pub struct TableDto {
pub id: u64,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub cells: Vec<u64>,
pub rows: i64,
pub columns: i64,
pub column_widths: Vec<i64>,
pub fmt_border: Option<i64>,
pub fmt_cell_spacing: Option<i64>,
pub fmt_cell_padding: Option<i64>,
pub fmt_width: Option<i64>,
pub fmt_alignment: Option<Alignment>,
}Fields§
§id: u64§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§cells: Vec<u64>§rows: i64§columns: i64§column_widths: Vec<i64>§fmt_border: Option<i64>§fmt_cell_spacing: Option<i64>§fmt_cell_padding: Option<i64>§fmt_width: Option<i64>§fmt_alignment: Option<Alignment>Trait Implementations§
Source§impl<'de> Deserialize<'de> for TableDto
impl<'de> Deserialize<'de> for TableDto
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TableDto, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TableDto, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for TableDto
impl Serialize for TableDto
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 TableDto
Auto Trait Implementations§
impl Freeze for TableDto
impl RefUnwindSafe for TableDto
impl Send for TableDto
impl Sync for TableDto
impl Unpin for TableDto
impl UnsafeUnpin for TableDto
impl UnwindSafe for TableDto
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