pub struct TreeOpenArgs {
pub rows: Vec<String>,
pub emit: bool,
pub undo: bool,
pub save_selection: bool,
}Fields§
§rows: Vec<String>§emit: bool§undo: bool§save_selection: boolTrait Implementations§
Source§impl Clone for TreeOpenArgs
impl Clone for TreeOpenArgs
Source§fn clone(&self) -> TreeOpenArgs
fn clone(&self) -> TreeOpenArgs
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 TreeOpenArgs
impl Debug for TreeOpenArgs
Source§impl Default for TreeOpenArgs
impl Default for TreeOpenArgs
Source§impl PartialEq for TreeOpenArgs
impl PartialEq for TreeOpenArgs
Source§fn eq(&self, other: &TreeOpenArgs) -> bool
fn eq(&self, other: &TreeOpenArgs) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TreeOpenArgs
Auto Trait Implementations§
impl Freeze for TreeOpenArgs
impl RefUnwindSafe for TreeOpenArgs
impl Send for TreeOpenArgs
impl Sync for TreeOpenArgs
impl Unpin for TreeOpenArgs
impl UnsafeUnpin for TreeOpenArgs
impl UnwindSafe for TreeOpenArgs
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