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