Struct fiberplane_models::notebooks::TableColumnId
source · pub struct TableColumnId(/* private fields */);Expand description
This is an automatically generated ID that is added to every column in a table cell.
Table column IDs are used to refer to column definitions in the table. They can also be combined with a TableRowId to create a [TableRowItemId].
Column IDs may only contain alphanumeric characters and must be unique within a table.
Trait Implementations§
source§impl Clone for TableColumnId
impl Clone for TableColumnId
source§fn clone(&self) -> TableColumnId
fn clone(&self) -> TableColumnId
Returns a copy 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 TableColumnId
impl Debug for TableColumnId
source§impl<'de> Deserialize<'de> for TableColumnId
impl<'de> Deserialize<'de> for TableColumnId
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for TableColumnId
impl Display for TableColumnId
source§impl FromStr for TableColumnId
impl FromStr for TableColumnId
source§impl Ord for TableColumnId
impl Ord for TableColumnId
source§fn cmp(&self, other: &TableColumnId) -> Ordering
fn cmp(&self, other: &TableColumnId) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for TableColumnId
impl PartialEq for TableColumnId
source§fn eq(&self, other: &TableColumnId) -> bool
fn eq(&self, other: &TableColumnId) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for TableColumnId
impl PartialOrd for TableColumnId
source§fn partial_cmp(&self, other: &TableColumnId) -> Option<Ordering>
fn partial_cmp(&self, other: &TableColumnId) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl Serialize for TableColumnId
impl Serialize for TableColumnId
impl Eq for TableColumnId
impl StructuralPartialEq for TableColumnId
Auto Trait Implementations§
impl RefUnwindSafe for TableColumnId
impl Send for TableColumnId
impl Sync for TableColumnId
impl Unpin for TableColumnId
impl UnwindSafe for TableColumnId
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