pub struct TableCellDto {
pub id: EntityId,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub row: i64,
pub column: i64,
pub row_span: i64,
pub column_span: i64,
pub cell_frame: Option<EntityId>,
pub fmt_padding: Option<i64>,
pub fmt_border: Option<i64>,
pub fmt_vertical_alignment: Option<CellVerticalAlignment>,
pub fmt_background_color: Option<String>,
}Fields§
§id: EntityId§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§row: i64§column: i64§row_span: i64§column_span: i64§cell_frame: Option<EntityId>§fmt_padding: Option<i64>§fmt_border: Option<i64>§fmt_vertical_alignment: Option<CellVerticalAlignment>§fmt_background_color: Option<String>Trait Implementations§
Source§impl Clone for TableCellDto
impl Clone for TableCellDto
Source§fn clone(&self) -> TableCellDto
fn clone(&self) -> TableCellDto
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 TableCellDto
impl Debug for TableCellDto
Source§impl Default for TableCellDto
impl Default for TableCellDto
Source§fn default() -> TableCellDto
fn default() -> TableCellDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TableCellDto
impl<'de> Deserialize<'de> for TableCellDto
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 From<&TableCellDto> for TableCell
impl From<&TableCellDto> for TableCell
Source§fn from(dto: &TableCellDto) -> Self
fn from(dto: &TableCellDto) -> Self
Converts to this type from the input type.
Source§impl From<TableCell> for TableCellDto
impl From<TableCell> for TableCellDto
Source§impl From<TableCellDto> for TableCell
impl From<TableCellDto> for TableCell
Source§fn from(dto: TableCellDto) -> Self
fn from(dto: TableCellDto) -> Self
Converts to this type from the input type.
Source§impl From<TableCellDto> for UpdateTableCellDto
impl From<TableCellDto> for UpdateTableCellDto
Source§fn from(dto: TableCellDto) -> Self
fn from(dto: TableCellDto) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TableCellDto
impl PartialEq for TableCellDto
Source§impl Serialize for TableCellDto
impl Serialize for TableCellDto
impl StructuralPartialEq for TableCellDto
Auto Trait Implementations§
impl Freeze for TableCellDto
impl RefUnwindSafe for TableCellDto
impl Send for TableCellDto
impl Sync for TableCellDto
impl Unpin for TableCellDto
impl UnsafeUnpin for TableCellDto
impl UnwindSafe for TableCellDto
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