Struct fiberplane_models::notebooks::TableRowId
source · pub struct TableRowId(/* private fields */);Expand description
This is an automatically generated ID that is added to every row in a table cell.
Table row IDs are used to refer to rows in the table. They can also be combined with a TableColumnId to create a TableRowValueId.
Row IDs may only contain alphanumeric characters and must be unique within a table.
Trait Implementations§
source§impl Clone for TableRowId
impl Clone for TableRowId
source§fn clone(&self) -> TableRowId
fn clone(&self) -> TableRowId
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 TableRowId
impl Debug for TableRowId
source§impl<'de> Deserialize<'de> for TableRowId
impl<'de> Deserialize<'de> for TableRowId
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 TableRowId
impl Display for TableRowId
source§impl FromStr for TableRowId
impl FromStr for TableRowId
source§impl Ord for TableRowId
impl Ord for TableRowId
source§fn cmp(&self, other: &TableRowId) -> Ordering
fn cmp(&self, other: &TableRowId) -> 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 TableRowId
impl PartialEq for TableRowId
source§fn eq(&self, other: &TableRowId) -> bool
fn eq(&self, other: &TableRowId) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for TableRowId
impl PartialOrd for TableRowId
source§fn partial_cmp(&self, other: &TableRowId) -> Option<Ordering>
fn partial_cmp(&self, other: &TableRowId) -> 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 TableRowId
impl Serialize for TableRowId
impl Eq for TableRowId
impl StructuralPartialEq for TableRowId
Auto Trait Implementations§
impl Freeze for TableRowId
impl RefUnwindSafe for TableRowId
impl Send for TableRowId
impl Sync for TableRowId
impl Unpin for TableRowId
impl UnwindSafe for TableRowId
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