#[repr(u8)]pub enum UnderlineType {
None = 0,
Solid = 1,
Dash = 2,
DashDot = 3,
DashDotDot = 4,
Dotted = 5,
DoubleSolid = 6,
Wave = 7,
}
Variants§
Trait Implementations§
Source§impl Clone for UnderlineType
impl Clone for UnderlineType
Source§fn clone(&self) -> UnderlineType
fn clone(&self) -> UnderlineType
Returns a duplicate 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 UnderlineType
impl Debug for UnderlineType
impl Copy for UnderlineType
Auto Trait Implementations§
impl Freeze for UnderlineType
impl RefUnwindSafe for UnderlineType
impl Send for UnderlineType
impl Sync for UnderlineType
impl Unpin for UnderlineType
impl UnwindSafe for UnderlineType
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