#[repr(u8)]pub enum TableCellContentType {
Unknown = 0,
Value = 1,
Field = 2,
Block = 4,
}Expand description
Cell content type for table content.
Variants§
Unknown = 0
Unknown content.
Value = 1
Value content.
Field = 2
Field content.
Block = 4
Block content.
Trait Implementations§
Source§impl Clone for TableCellContentType
impl Clone for TableCellContentType
Source§fn clone(&self) -> TableCellContentType
fn clone(&self) -> TableCellContentType
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 TableCellContentType
impl Debug for TableCellContentType
Source§impl Default for TableCellContentType
impl Default for TableCellContentType
Source§fn default() -> TableCellContentType
fn default() -> TableCellContentType
Returns the “default value” for a type. Read more
Source§impl From<u8> for TableCellContentType
impl From<u8> for TableCellContentType
Source§impl PartialEq for TableCellContentType
impl PartialEq for TableCellContentType
impl Copy for TableCellContentType
impl Eq for TableCellContentType
impl StructuralPartialEq for TableCellContentType
Auto Trait Implementations§
impl Freeze for TableCellContentType
impl RefUnwindSafe for TableCellContentType
impl Send for TableCellContentType
impl Sync for TableCellContentType
impl Unpin for TableCellContentType
impl UnsafeUnpin for TableCellContentType
impl UnwindSafe for TableCellContentType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.