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