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