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