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