Struct umya_spreadsheet::structs::Border
source · pub struct Border { /* private fields */ }Implementations§
source§impl Border
impl Border
pub fn get_color(&self) -> &Color
pub fn get_color_mut(&mut self) -> &mut Color
pub fn set_color(&mut self, value: Color) -> &mut Self
pub fn get_style(&self) -> &BorderStyleValues
pub fn set_style(&mut self, value: BorderStyleValues) -> &mut Self
pub const BORDER_NONE: &'static str = "none"
pub const BORDER_DASHDOT: &'static str = "dashDot"
pub const BORDER_DASHDOTDOT: &'static str = "dashDotDot"
pub const BORDER_DASHED: &'static str = "dashed"
pub const BORDER_DOTTED: &'static str = "dotted"
pub const BORDER_DOUBLE: &'static str = "double"
pub const BORDER_HAIR: &'static str = "hair"
pub const BORDER_MEDIUM: &'static str = "medium"
pub const BORDER_MEDIUMDASHDOT: &'static str = "mediumDashDot"
pub const BORDER_MEDIUMDASHDOTDOT: &'static str = "mediumDashDotDot"
pub const BORDER_MEDIUMDASHED: &'static str = "mediumDashed"
pub const BORDER_SLANTDASHDOT: &'static str = "slantDashDot"
pub const BORDER_THICK: &'static str = "thick"
pub const BORDER_THIN: &'static str = "thin"
pub fn get_border_style(&self) -> &str
pub fn set_border_style<S: Into<String>>(&mut self, value: S)
Trait Implementations§
source§impl PartialEq for Border
impl PartialEq for Border
source§impl PartialOrd for Border
impl PartialOrd for Border
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl StructuralPartialEq for Border
Auto Trait Implementations§
impl RefUnwindSafe for Border
impl Send for Border
impl Sync for Border
impl Unpin for Border
impl UnwindSafe for Border
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
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for Pwhere
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for Pwhere R: Read + ReadEndian<P>, P: Default,
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().