[−][src]Struct font_kit::properties::Properties
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 Clone for Properties
[src]
fn clone(&self) -> Properties
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for Properties
[src]
impl Default for Properties
[src]
fn default() -> Properties
[src]
impl PartialEq<Properties> for Properties
[src]
fn eq(&self, other: &Properties) -> bool
[src]
fn ne(&self, other: &Properties) -> bool
[src]
impl Debug for Properties
[src]
impl StructuralPartialEq for Properties
[src]
Auto Trait Implementations
impl Send for Properties
impl Sync for Properties
impl Unpin for Properties
impl UnwindSafe for Properties
impl RefUnwindSafe for Properties
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,