Struct savefile::IntrospectionFrame
source · pub struct IntrospectionFrame {
pub selected: Option<usize>,
pub keyvals: Vec<IntrospectedElement>,
pub limit_reached: bool,
}
Expand description
All fields at a specific depth in the introspection tree
Fields§
§selected: Option<usize>
The index of the expanded child, if any
keyvals: Vec<IntrospectedElement>
All fields at this level
limit_reached: bool
True if there may have been more children, but expansion was stopped because the limit given to the Introspector was reached.
Trait Implementations§
source§impl Clone for IntrospectionFrame
impl Clone for IntrospectionFrame
source§fn clone(&self) -> IntrospectionFrame
fn clone(&self) -> IntrospectionFrame
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for IntrospectionFrame
impl Send for IntrospectionFrame
impl Sync for IntrospectionFrame
impl Unpin for IntrospectionFrame
impl UnwindSafe for IntrospectionFrame
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more