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<u64>,
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<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 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<CreateTableCellDto, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreateTableCellDto, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<TableCell> for CreateTableCellDto
impl From<TableCell> for CreateTableCellDto
Source§fn from(entity: TableCell) -> CreateTableCellDto
fn from(entity: TableCell) -> CreateTableCellDto
Converts to this type from the input type.
Source§impl PartialEq for CreateTableCellDto
impl PartialEq for CreateTableCellDto
Source§impl Serialize for CreateTableCellDto
impl Serialize for CreateTableCellDto
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 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