mirror of
https://github.com/serde-rs/serde.git
synced 2025-10-02 23:35:26 +00:00
Fix content's SeqDeserializer on no_std
This commit is contained in:
parent
4c253748c2
commit
a4bd6b9a96
@ -759,7 +759,7 @@ impl<E> de::VariantVisitor for VariantDeserializer<E> where E: de::Error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
struct SeqDeserializer<E> where E: de::Error {
|
struct SeqDeserializer<E> where E: de::Error {
|
||||||
iter: ::std::vec::IntoIter<Content>,
|
iter: <Vec<Content> as IntoIterator>::IntoIter,
|
||||||
err: PhantomData<E>,
|
err: PhantomData<E>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user