pub struct PgBottomBorder {
pub style: Option<BorderStyle>,
pub color: Option<String>,
pub theme_color: Option<ThemeColor>,
pub theme_tint: Option<String>,
pub theme_shade: Option<String>,
pub size: Option<isize>,
pub space: Option<isize>,
pub shadow: Option<bool>,
pub frame: Option<bool>,
}
Fields§
§style: Option<BorderStyle>
§color: Option<String>
§theme_color: Option<ThemeColor>
§theme_tint: Option<String>
§theme_shade: Option<String>
§size: Option<isize>
§space: Option<isize>
§shadow: Option<bool>
§frame: Option<bool>
Implementations§
Source§impl PgBottomBorder
impl PgBottomBorder
pub fn style<T: Into<BorderStyle>>(self, value: T) -> Self
pub fn color<T: Into<String>>(self, value: T) -> Self
pub fn theme_color<T: Into<ThemeColor>>(self, value: T) -> Self
pub fn theme_tint<T: Into<String>>(self, value: T) -> Self
pub fn theme_shade<T: Into<String>>(self, value: T) -> Self
pub fn size<T: Into<isize>>(self, value: T) -> Self
pub fn space<T: Into<isize>>(self, value: T) -> Self
pub fn shadow<T: Into<bool>>(self, value: T) -> Self
pub fn frame<T: Into<bool>>(self, value: T) -> Self
Trait Implementations§
Source§impl Clone for PgBottomBorder
impl Clone for PgBottomBorder
Source§fn clone(&self) -> PgBottomBorder
fn clone(&self) -> PgBottomBorder
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 PgBottomBorder
impl Debug for PgBottomBorder
Source§impl Default for PgBottomBorder
impl Default for PgBottomBorder
Source§fn default() -> PgBottomBorder
fn default() -> PgBottomBorder
Returns the “default value” for a type. Read more
Source§impl<'__input> XmlRead<'__input> for PgBottomBorder
impl<'__input> XmlRead<'__input> for PgBottomBorder
Auto Trait Implementations§
impl Freeze for PgBottomBorder
impl RefUnwindSafe for PgBottomBorder
impl Send for PgBottomBorder
impl Sync for PgBottomBorder
impl Unpin for PgBottomBorder
impl UnwindSafe for PgBottomBorder
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