pub struct SetTableFormatDto {
pub table_id: i64,
pub border: Option<i64>,
pub cell_spacing: Option<i64>,
pub cell_padding: Option<i64>,
pub width: Option<i64>,
pub alignment: Option<Alignment>,
}Fields§
§table_id: i64§border: Option<i64>§cell_spacing: Option<i64>§cell_padding: Option<i64>§width: Option<i64>§alignment: Option<Alignment>Trait Implementations§
Source§impl Clone for SetTableFormatDto
impl Clone for SetTableFormatDto
Source§fn clone(&self) -> SetTableFormatDto
fn clone(&self) -> SetTableFormatDto
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 SetTableFormatDto
impl Debug for SetTableFormatDto
Source§impl Default for SetTableFormatDto
impl Default for SetTableFormatDto
Source§fn default() -> SetTableFormatDto
fn default() -> SetTableFormatDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetTableFormatDto
impl<'de> Deserialize<'de> for SetTableFormatDto
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 PartialEq for SetTableFormatDto
impl PartialEq for SetTableFormatDto
Source§impl Serialize for SetTableFormatDto
impl Serialize for SetTableFormatDto
impl StructuralPartialEq for SetTableFormatDto
Auto Trait Implementations§
impl Freeze for SetTableFormatDto
impl RefUnwindSafe for SetTableFormatDto
impl Send for SetTableFormatDto
impl Sync for SetTableFormatDto
impl Unpin for SetTableFormatDto
impl UnsafeUnpin for SetTableFormatDto
impl UnwindSafe for SetTableFormatDto
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