pub struct Border { /* private fields */ }Implementations§
Source§impl Border
impl Border
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_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 fn get_border_style(&self) -> &str
pub fn set_border_style<S: Into<String>>(&mut self, value: S)
Trait Implementations§
Source§impl PartialOrd for Border
impl PartialOrd for Border
impl StructuralPartialEq for Border
Auto Trait Implementations§
impl Freeze for Border
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