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