Enum serde_ignored::Path [] [src]

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

Fields of Seq

Fields of Map

Fields of Some

Fields of NewtypeStruct

Fields of NewtypeVariant

Trait Implementations

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

Formats the value using the given formatter. Read more