pub struct TableCellDto {
pub id: u64,
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<u64>,
pub fmt_padding: Option<i64>,
pub fmt_border: Option<i64>,
pub fmt_vertical_alignment: Option<CellVerticalAlignment>,
pub fmt_background_color: Option<String>,
}Fields§
§id: u64§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§row: i64§column: i64§row_span: i64§column_span: i64§cell_frame: Option<u64>§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<TableCellDto, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TableCellDto, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<TableCell> for TableCellDto
impl From<TableCell> for TableCellDto
Source§fn from(entity: TableCell) -> TableCellDto
fn from(entity: TableCell) -> TableCellDto
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
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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