pub struct RowHierarchy {
pub indent_level: usize,
pub has_children: bool,
pub is_expanded: bool,
}Fields§
§indent_level: usize§has_children: bool§is_expanded: boolTrait Implementations§
Source§impl Clone for RowHierarchy
impl Clone for RowHierarchy
Source§fn clone(&self) -> RowHierarchy
fn clone(&self) -> RowHierarchy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RowHierarchy
Source§impl Debug for RowHierarchy
impl Debug for RowHierarchy
Source§impl<'de> Deserialize<'de> for RowHierarchy
impl<'de> Deserialize<'de> for RowHierarchy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RowHierarchy
impl RefUnwindSafe for RowHierarchy
impl Send for RowHierarchy
impl Sync for RowHierarchy
impl Unpin for RowHierarchy
impl UnsafeUnpin for RowHierarchy
impl UnwindSafe for RowHierarchy
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