[][src]Struct alacritty::config::font::SecondaryFontDescription

pub struct SecondaryFontDescription {
    family: Option<String>,
    style: Option<String>,
}

Description of the italic and bold font.

Fields

family: Option<String>style: Option<String>

Implementations

impl SecondaryFontDescription[src]

pub fn desc(&self, fallback: &FontDescription) -> FontDescription[src]

Trait Implementations

impl Clone for SecondaryFontDescription[src]

impl Debug for SecondaryFontDescription[src]

impl Default for SecondaryFontDescription[src]

impl<'de> Deserialize<'de> for SecondaryFontDescription[src]

impl Eq for SecondaryFontDescription[src]

impl PartialEq<SecondaryFontDescription> for SecondaryFontDescription[src]

impl StructuralEq for SecondaryFontDescription[src]

impl StructuralPartialEq for SecondaryFontDescription[src]

Auto Trait Implementations

impl RefUnwindSafe for SecondaryFontDescription

impl Send for SecondaryFontDescription

impl Sync for SecondaryFontDescription

impl Unpin for SecondaryFontDescription

impl UnwindSafe for SecondaryFontDescription

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.