pub struct CreateTableCellDto {
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§
§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 CreateTableCellDto
impl Clone for CreateTableCellDto
Source§fn clone(&self) -> CreateTableCellDto
fn clone(&self) -> CreateTableCellDto
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 CreateTableCellDto
impl Debug for CreateTableCellDto
Source§impl Default for CreateTableCellDto
impl Default for CreateTableCellDto
Source§fn default() -> CreateTableCellDto
fn default() -> CreateTableCellDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateTableCellDto
impl<'de> Deserialize<'de> for CreateTableCellDto
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<&CreateTableCellDto> for TableCell
impl From<&CreateTableCellDto> for TableCell
Source§fn from(dto: &CreateTableCellDto) -> Self
fn from(dto: &CreateTableCellDto) -> Self
Converts to this type from the input type.
Source§impl From<CreateTableCellDto> for TableCell
impl From<CreateTableCellDto> for TableCell
Source§fn from(dto: CreateTableCellDto) -> Self
fn from(dto: CreateTableCellDto) -> Self
Converts to this type from the input type.
Source§impl From<TableCell> for CreateTableCellDto
impl From<TableCell> for CreateTableCellDto
Source§impl PartialEq for CreateTableCellDto
impl PartialEq for CreateTableCellDto
Source§impl Serialize for CreateTableCellDto
impl Serialize for CreateTableCellDto
impl StructuralPartialEq for CreateTableCellDto
Auto Trait Implementations§
impl Freeze for CreateTableCellDto
impl RefUnwindSafe for CreateTableCellDto
impl Send for CreateTableCellDto
impl Sync for CreateTableCellDto
impl Unpin for CreateTableCellDto
impl UnsafeUnpin for CreateTableCellDto
impl UnwindSafe for CreateTableCellDto
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