pub struct Alignment {
pub horizontal: Option<String>,
pub vertical: Option<String>,
pub wrap_text: Option<bool>,
pub text_rotation: Option<u32>,
pub indent: Option<u32>,
pub shrink_to_fit: Option<bool>,
}Expand description
Cell alignment.
Fields§
§horizontal: Option<String>§vertical: Option<String>§wrap_text: Option<bool>§text_rotation: Option<u32>§indent: Option<u32>§shrink_to_fit: Option<bool>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Alignment
impl<'de> Deserialize<'de> for Alignment
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
impl StructuralPartialEq for Alignment
Auto Trait Implementations§
impl Freeze for Alignment
impl RefUnwindSafe for Alignment
impl Send for Alignment
impl Sync for Alignment
impl Unpin for Alignment
impl UnwindSafe for Alignment
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