[][src]Struct savefile::IntrospectionResult

pub struct IntrospectionResult {
    pub frames: Vec<IntrospectionFrame>,
    // some fields omitted
}

An introspection tree. Note that each node in the tree can only have one expanded field, and thus at most one child (a bit of a boring 'tree' :-) ).

Fields

frames: Vec<IntrospectionFrame>

The levels in the tree

Implementations

impl IntrospectionResult[src]

pub fn total_index(&self, index: usize) -> Option<IntrospectedElement>[src]

Indexes the result with a single index, which will reach all levels in the tree. Printing all elements in the order returned here, with indentation equal to item.key.depth, will yield a readable tree.

pub fn total_len(&self) -> usize[src]

The total number of nodes in the tree. The value returns is the exclusive upper bound of valid indexes to the 'total_index'-method.

Trait Implementations

impl Clone for IntrospectionResult[src]

impl Debug for IntrospectionResult[src]

impl Display for IntrospectionResult[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,