[][src]Struct serde_spaniel::de::Deserializer

pub struct Deserializer<P: PromptRequester> { /* fields omitted */ }

Implementations

impl<P: PromptRequester> Deserializer<P>[src]

pub fn from_prompt(prompt: P) -> Self[src]

pub fn cleanup(&mut self) -> Result<()>[src]

Trait Implementations

impl<'de, 'a, P: PromptRequester> Deserializer<'de> for &'a mut Deserializer<P>[src]

type Error = Error

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

impl<P: PromptRequester> Drop for Deserializer<P>[src]

Auto Trait Implementations

impl<P> RefUnwindSafe for Deserializer<P> where
    P: RefUnwindSafe
[src]

impl<P> Send for Deserializer<P> where
    P: Send
[src]

impl<P> Sync for Deserializer<P> where
    P: Sync
[src]

impl<P> Unpin for Deserializer<P> where
    P: Unpin
[src]

impl<P> UnwindSafe for Deserializer<P> where
    P: 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.