[][src]Struct font_kit::properties::Properties

pub struct Properties {
    pub style: Style,
    pub weight: Weight,
    pub stretch: Stretch,
}

Properties that specify which font in a family to use: e.g. style, weight, and stretchiness.

This object supports a method chaining style for idiomatic initialization; e.g.

println!("{:?}", Properties::new().style(Style::Italic));

Fields

style: Style

The font style, as defined in CSS.

weight: Weight

The font weight, as defined in CSS.

stretch: Stretch

The font stretchiness, as defined in CSS.

Methods

impl Properties[src]

pub fn new() -> Properties[src]

Initializes a property set to its default values: normal style, normal weight, and normal stretchiness.

pub fn style(&mut self, style: Style) -> &mut Properties[src]

Sets the value of the style property and returns this property set for method chaining.

pub fn weight(&mut self, weight: Weight) -> &mut Properties[src]

Sets the value of the weight property and returns this property set for method chaining.

pub fn stretch(&mut self, stretch: Stretch) -> &mut Properties[src]

Sets the value of the stretch property and returns this property set for method chaining.

Trait Implementations

impl PartialEq<Properties> for Properties[src]

impl Copy for Properties[src]

impl Clone for Properties[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Properties[src]

impl Debug for Properties[src]

Auto Trait Implementations

impl Send for Properties

impl Sync for Properties

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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.

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

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

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