pub struct TreeExtendArgs {
pub rows: Vec<TreeExtendRow>,
pub inherit: String,
pub select: bool,
pub emit: bool,
pub undo: bool,
pub empty_ids: EmptyIdHandling,
pub duplicate_ids: DuplicateIdHandling,
pub cycles: CycleHandling,
pub save_selection: bool,
}Expand description
For tree_extend functions. Uses rows containing:
- iid
- par
- vals of Vec<(String, Val)>
Fields§
§rows: Vec<TreeExtendRow>§inherit: String§select: bool§emit: bool§undo: bool§empty_ids: EmptyIdHandling§duplicate_ids: DuplicateIdHandling§cycles: CycleHandling§save_selection: boolTrait Implementations§
Source§impl Clone for TreeExtendArgs
impl Clone for TreeExtendArgs
Source§fn clone(&self) -> TreeExtendArgs
fn clone(&self) -> TreeExtendArgs
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 TreeExtendArgs
impl Debug for TreeExtendArgs
Source§impl Default for TreeExtendArgs
impl Default for TreeExtendArgs
Source§impl PartialEq for TreeExtendArgs
impl PartialEq for TreeExtendArgs
Source§fn eq(&self, other: &TreeExtendArgs) -> bool
fn eq(&self, other: &TreeExtendArgs) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TreeExtendArgs
Auto Trait Implementations§
impl Freeze for TreeExtendArgs
impl RefUnwindSafe for TreeExtendArgs
impl Send for TreeExtendArgs
impl Sync for TreeExtendArgs
impl Unpin for TreeExtendArgs
impl UnsafeUnpin for TreeExtendArgs
impl UnwindSafe for TreeExtendArgs
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