[][src]Struct unicode_canvas::Border

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: boolhas_top: boolhas_bottom: boolhas_left: boolhas_right: boolis_top_left_rounded: boolis_top_right_rounded: boolis_bottom_left_rounded: boolis_bottom_right_rounded: bool

Implementations

impl Border[src]

pub fn thin() -> Self[src]

pub fn thick() -> Self[src]

pub fn rounded() -> Self[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.