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