pub struct TreeExtendRow {
pub iid: String,
pub par: String,
pub val: Option<Val>,
pub vals: Option<Vec<(String, Val)>>,
pub open: bool,
pub dim: Option<u64>,
}Expand description
For tree_extend functions. Row containing:
- iid
- par
- vals of Vec<(String, Val)>
Fields§
§iid: String§par: String§val: Option<Val>§vals: Option<Vec<(String, Val)>>§open: bool§dim: Option<u64>Trait Implementations§
Source§impl Clone for TreeExtendRow
impl Clone for TreeExtendRow
Source§fn clone(&self) -> TreeExtendRow
fn clone(&self) -> TreeExtendRow
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 moreSource§impl Debug for TreeExtendRow
impl Debug for TreeExtendRow
Source§impl PartialEq for TreeExtendRow
impl PartialEq for TreeExtendRow
Source§fn eq(&self, other: &TreeExtendRow) -> bool
fn eq(&self, other: &TreeExtendRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TreeExtendRow
Auto Trait Implementations§
impl Freeze for TreeExtendRow
impl RefUnwindSafe for TreeExtendRow
impl Send for TreeExtendRow
impl Sync for TreeExtendRow
impl Unpin for TreeExtendRow
impl UnsafeUnpin for TreeExtendRow
impl UnwindSafe for TreeExtendRow
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