[]Enum bevy::reflect::ReflectPathError

pub enum ReflectPathError<'a> {
    ExpectedIdent {
        index: usize,
    },
    InvalidField {
        index: usize,
        field: &'a str,
    },
    InvalidTupleStructIndex {
        index: usize,
        tuple_struct_index: usize,
    },
    InvalidListIndex {
        index: usize,
        list_index: usize,
    },
    UnexpectedToken {
        index: usize,
        token: &'a str,
    },
    ExpectedToken {
        index: usize,
        token: &'a str,
    },
    ExpectedStruct {
        index: usize,
    },
    ExpectedList {
        index: usize,
    },
    IndexParseError(ParseIntError),
    InvalidDowncast,
}

Variants

ExpectedIdent

Fields of ExpectedIdent

index: usize
InvalidField

Fields of InvalidField

index: usizefield: &'a str
InvalidTupleStructIndex

Fields of InvalidTupleStructIndex

index: usizetuple_struct_index: usize
InvalidListIndex

Fields of InvalidListIndex

index: usizelist_index: usize
UnexpectedToken

Fields of UnexpectedToken

index: usizetoken: &'a str
ExpectedToken

Fields of ExpectedToken

index: usizetoken: &'a str
ExpectedStruct

Fields of ExpectedStruct

index: usize
ExpectedList

Fields of ExpectedList

index: usize
IndexParseError(ParseIntError)
InvalidDowncast

Trait Implementations

impl<'a> Debug for ReflectPathError<'a>

impl<'a> Display for ReflectPathError<'a>

impl<'a> Eq for ReflectPathError<'a>

impl<'a> Error for ReflectPathError<'a>

impl<'a> From<ParseIntError> for ReflectPathError<'a>

impl<'a> PartialEq<ReflectPathError<'a>> for ReflectPathError<'a>

impl<'a> StructuralEq for ReflectPathError<'a>

impl<'a> StructuralPartialEq for ReflectPathError<'a>

Auto Trait Implementations

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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

impl<T> Instrument for T[src]

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

impl<T> Resource for T where
    T: 'static + Send + Sync

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<V, T> VZip<V> for T where
    V: MultiLane<T>,