#[repr(i32)]pub enum TableResizeFlag {
None = 0,
ColLeft = 1,
ColRight = 2,
RowAbove = 3,
RowBelow = 4,
}
Expand description
Defines the TableResizeFlag
Variants§
None = 0
Non resizable
ColLeft = 1
Resizes on the left of the column
ColRight = 2
Resizes on the right of the column
RowAbove = 3
Resizes to above the row
RowBelow = 4
Resizes to below the row
Trait Implementations§
Source§impl Clone for TableResizeFlag
impl Clone for TableResizeFlag
Source§fn clone(&self) -> TableResizeFlag
fn clone(&self) -> TableResizeFlag
Returns a duplicate of the value. Read more
1.0.0 · 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 TableResizeFlag
impl Debug for TableResizeFlag
Source§impl PartialEq for TableResizeFlag
impl PartialEq for TableResizeFlag
impl Copy for TableResizeFlag
impl Eq for TableResizeFlag
impl StructuralPartialEq for TableResizeFlag
Auto Trait Implementations§
impl Freeze for TableResizeFlag
impl RefUnwindSafe for TableResizeFlag
impl Send for TableResizeFlag
impl Sync for TableResizeFlag
impl Unpin for TableResizeFlag
impl UnwindSafe for TableResizeFlag
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