pub struct IntrospectedElement {
pub key: IntrospectedElementKey,
pub value: String,
pub has_children: bool,
pub selected: bool,
}Expand description
A node in the introspection tree
Fields§
§key: IntrospectedElementKeyIdentifying key
value: StringValue of node
has_children: boolFlag which tells if there are children below this node
selected: boolFlag which tells if this child is selected
Trait Implementations§
Source§impl Clone for IntrospectedElement
impl Clone for IntrospectedElement
Source§fn clone(&self) -> IntrospectedElement
fn clone(&self) -> IntrospectedElement
Returns a duplicate 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 moreSource§impl Debug for IntrospectedElement
impl Debug for IntrospectedElement
Source§impl Display for IntrospectedElement
impl Display for IntrospectedElement
Source§impl PartialEq for IntrospectedElement
impl PartialEq for IntrospectedElement
impl Eq for IntrospectedElement
impl StructuralPartialEq for IntrospectedElement
Auto Trait Implementations§
impl Freeze for IntrospectedElement
impl RefUnwindSafe for IntrospectedElement
impl Send for IntrospectedElement
impl Sync for IntrospectedElement
impl Unpin for IntrospectedElement
impl UnwindSafe for IntrospectedElement
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.