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