pub struct Format {
pub font: Font,
pub num_format: NumFormat,
pub fill: Fill,
pub borders: CellBorder,
pub hidden: bool,
pub horizontal_alignment: Option<HorizontalAlignment>,
pub vertical_alignment: Option<VerticalAlignment>,
pub text_wrap: bool,
pub indent: u8,
pub shrink: u8,
/* private fields */
}Fields§
§font: Font§num_format: NumFormat§fill: Fill§borders: CellBorder§horizontal_alignment: Option<HorizontalAlignment>§vertical_alignment: Option<VerticalAlignment>§text_wrap: bool§indent: u8§shrink: u8Implementations§
Source§impl Format
impl Format
pub fn set_text_wrap(&mut self)
pub fn set_rotation(&mut self, angle: i16) -> Result<()>
Trait Implementations§
impl Eq for Format
impl StructuralPartialEq for Format
Auto Trait Implementations§
impl Freeze for Format
impl RefUnwindSafe for Format
impl Send for Format
impl Sync for Format
impl Unpin for Format
impl UnwindSafe for Format
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.