pub struct CellAlignArgs {
pub key: SpanKey,
pub align: Option<CellAlign>,
pub emit: bool,
pub undo: bool,
pub save_selection: bool,
pub expand: bool,
}Fields§
§key: SpanKey§align: Option<CellAlign>Some(align) = set this alignment on the span None = clear/remove alignment from the span
emit: bool§undo: bool§save_selection: bool§expand: boolTrait Implementations§
Source§impl Clone for CellAlignArgs
impl Clone for CellAlignArgs
Source§fn clone(&self) -> CellAlignArgs
fn clone(&self) -> CellAlignArgs
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 CellAlignArgs
impl Debug for CellAlignArgs
Source§impl Default for CellAlignArgs
impl Default for CellAlignArgs
Source§impl PartialEq for CellAlignArgs
impl PartialEq for CellAlignArgs
Source§fn eq(&self, other: &CellAlignArgs) -> bool
fn eq(&self, other: &CellAlignArgs) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CellAlignArgs
Auto Trait Implementations§
impl Freeze for CellAlignArgs
impl RefUnwindSafe for CellAlignArgs
impl Send for CellAlignArgs
impl Sync for CellAlignArgs
impl Unpin for CellAlignArgs
impl UnsafeUnpin for CellAlignArgs
impl UnwindSafe for CellAlignArgs
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