pub struct Border {
pub use_thick_border: bool,
pub has_top: bool,
pub has_bottom: bool,
pub has_left: bool,
pub has_right: bool,
pub is_top_left_rounded: bool,
pub is_top_right_rounded: bool,
pub is_bottom_left_rounded: bool,
pub is_bottom_right_rounded: bool,
}
Fields§
§use_thick_border: bool
§has_top: bool
§has_bottom: bool
§has_left: bool
§has_right: bool
§is_top_left_rounded: bool
§is_top_right_rounded: bool
§is_bottom_left_rounded: bool
§is_bottom_right_rounded: bool
Implementations§
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