[][src]Struct rapid_xml::de::Deserializer

pub struct Deserializer<'a, R: Read> { /* fields omitted */ }

Serde Deserializer that builds types from XML Events produced by Parser

Implementations

impl<'a, R: Read> Deserializer<'a, R>[src]

pub fn new(parser: &'a mut Parser<R>) -> Result<Self, DeserializeError>[src]

Create new TreeDeserializer from given Parser.

Trait Implementations

impl<'de: 'a, 'a, R: Read> Deserializer<'de> for &'a mut Deserializer<'a, R>[src]

type Error = DeserializeError

The error type that can be returned if some error occurs during deserialization. Read more

Auto Trait Implementations

impl<'a, R> RefUnwindSafe for Deserializer<'a, R> where
    R: RefUnwindSafe

impl<'a, R> Send for Deserializer<'a, R> where
    R: Send

impl<'a, R> Sync for Deserializer<'a, R> where
    R: Sync

impl<'a, R> Unpin for Deserializer<'a, R>

impl<'a, R> !UnwindSafe for Deserializer<'a, R>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.