Struct serde_bencoded::Deserializer[][src]

pub struct Deserializer<'de, T: Behaviour> { /* fields omitted */ }

Implementations

impl<'de> Deserializer<'de, Simple>[src]

pub fn from_bytes(input: &'de [u8]) -> Self[src]

pub fn from_str(input: &'de str) -> Self[src]

impl<'de> Deserializer<'de, Auto>[src]

pub fn from_bytes_auto(input: &'de [u8]) -> Self[src]

pub fn from_str_auto(input: &'de str) -> Self[src]

Trait Implementations

impl<'de, 'a, T: Behaviour> Deserializer<'de> for &'a mut Deserializer<'de, T>[src]

type Error = Error

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

impl<'de, T: Behaviour> EnumAccess<'de> for &mut Deserializer<'de, T>[src]

type Error = Error

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

type Variant = Self

The Visitor that will be used to deserialize the content of the enum variant. Read more

impl<'de, T: Behaviour> MapAccess<'de> for Deserializer<'de, T>[src]

type Error = Error

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

impl<'de, Te: Behaviour> VariantAccess<'de> for &mut Deserializer<'de, Te>[src]

type Error = Error

The error type that can be returned if some error occurs during deserialization. Must match the error type of our EnumAccess. Read more

Auto Trait Implementations

impl<'de, T> RefUnwindSafe for Deserializer<'de, T> where
    T: RefUnwindSafe
[src]

impl<'de, T> Send for Deserializer<'de, T> where
    T: Send
[src]

impl<'de, T> Sync for Deserializer<'de, T> where
    T: Sync
[src]

impl<'de, T> Unpin for Deserializer<'de, T> where
    T: Unpin
[src]

impl<'de, T> UnwindSafe for Deserializer<'de, T> where
    T: UnwindSafe
[src]

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.