[][src]Enum serde_ignored::Path

pub enum Path<'a> {
    Root,
    Seq {
        parent: &'a Path<'a>,
        index: usize,
    },
    Map {
        parent: &'a Path<'a>,
        key: String,
    },
    Some {
        parent: &'a Path<'a>,
    },
    NewtypeStruct {
        parent: &'a Path<'a>,
    },
    NewtypeVariant {
        parent: &'a Path<'a>,
    },
}

Path to the current value in the input, like dependencies.serde.typo1.

Variants

RootSeq

Fields of Seq

parent: &'a Path<'a>index: usize
Map

Fields of Map

parent: &'a Path<'a>key: String
Some

Fields of Some

parent: &'a Path<'a>
NewtypeStruct

Fields of NewtypeStruct

parent: &'a Path<'a>
NewtypeVariant

Fields of NewtypeVariant

parent: &'a Path<'a>

Trait Implementations

impl<'a> Display for Path<'a>[src]

Auto Trait Implementations

impl<'a> Unpin for Path<'a>

impl<'a> Send for Path<'a>

impl<'a> Sync for Path<'a>

impl<'a> RefUnwindSafe for Path<'a>

impl<'a> UnwindSafe for Path<'a>

Blanket Implementations

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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.

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

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

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