#[repr(u8)]
pub enum Underline {
None,
Single,
Double,
Curly,
Dotted,
Dashed,
}
Expand description
Specify just how underlined you want your Cell
to be
Variants§
None
The cell is not underlined
Single
The cell is underlined with a single line
Double
The cell is underlined with two lines
Curly
Curly underline
Dotted
Dotted underline
Dashed
Dashed underline
Trait Implementations§
source§impl<'de> Deserialize<'de> for Underline
impl<'de> Deserialize<'de> for Underline
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl FromDynamic for Underline
impl FromDynamic for Underline
fn from_dynamic( value: &Value, options: FromDynamicOptions ) -> Result<Self, Error>
source§impl Into<bool> for Underline
impl Into<bool> for Underline
Allow converting to boolean; true means some kind of underline, false means none. This is used in some generic code to determine whether to enable underline.