Struct csvpp::RowModifier
source · pub struct RowModifier {Show 15 fields
pub border_color: Option<Rgb>,
pub border_style: Option<BorderStyle>,
pub borders: HashSet<BorderSide>,
pub color: Option<Rgb>,
pub expand: Option<Expand>,
pub font_color: Option<Rgb>,
pub font_family: Option<String>,
pub font_size: Option<u8>,
pub formats: HashSet<TextFormat>,
pub horizontal_align: Option<HorizontalAlign>,
pub lock: bool,
pub note: Option<String>,
pub number_format: Option<NumberFormat>,
pub var: Option<String>,
pub vertical_align: Option<VerticalAlign>,
}Expand description
Verrrry similar to Modifier, except RowModifier can also have an expand.
Fields§
§border_color: Option<Rgb>§border_style: Option<BorderStyle>§borders: HashSet<BorderSide>§color: Option<Rgb>§expand: Option<Expand>§font_color: Option<Rgb>§font_family: Option<String>§font_size: Option<u8>§formats: HashSet<TextFormat>§horizontal_align: Option<HorizontalAlign>§lock: bool§note: Option<String>§number_format: Option<NumberFormat>§var: Option<String>§vertical_align: Option<VerticalAlign>Trait Implementations§
source§impl Clone for RowModifier
impl Clone for RowModifier
source§fn clone(&self) -> RowModifier
fn clone(&self) -> RowModifier
Returns a copy 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 RowModifier
impl Debug for RowModifier
source§impl Default for RowModifier
impl Default for RowModifier
source§fn default() -> RowModifier
fn default() -> RowModifier
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RowModifier
impl<'de> Deserialize<'de> for RowModifier
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 Into<Modifier> for RowModifier
impl Into<Modifier> for RowModifier
source§impl PartialEq for RowModifier
impl PartialEq for RowModifier
source§fn eq(&self, other: &RowModifier) -> bool
fn eq(&self, other: &RowModifier) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for RowModifier
impl Serialize for RowModifier
impl StructuralPartialEq for RowModifier
Auto Trait Implementations§
impl RefUnwindSafe for RowModifier
impl Send for RowModifier
impl Sync for RowModifier
impl Unpin for RowModifier
impl UnwindSafe for RowModifier
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().