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