Struct font_kit::properties::Properties [−][src]
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]
impl Propertiespub fn new() -> Properties[src]
pub fn new() -> PropertiesInitializes a property set to its default values: normal style, normal weight, and normal stretchiness.
pub fn style(&mut self, style: Style) -> &mut Properties[src]
pub fn style(&mut self, style: Style) -> &mut PropertiesSets the value of the style property and returns this property set for method chaining.
pub fn weight(&mut self, weight: Weight) -> &mut Properties[src]
pub fn weight(&mut self, weight: Weight) -> &mut PropertiesSets the value of the weight property and returns this property set for method chaining.
pub fn stretch(&mut self, stretch: Stretch) -> &mut Properties[src]
pub fn stretch(&mut self, stretch: Stretch) -> &mut PropertiesSets the value of the stretch property and returns this property set for method chaining.
Trait Implementations
impl Clone for Properties[src]
impl Clone for Propertiesfn clone(&self) -> Properties[src]
fn clone(&self) -> PropertiesReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Copy for Properties[src]
impl Copy for Propertiesimpl Debug for Properties[src]
impl Debug for Propertiesfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Default for Properties[src]
impl Default for Propertiesfn default() -> Properties[src]
fn default() -> PropertiesReturns the "default value" for a type. Read more
impl PartialEq for Properties[src]
impl PartialEq for Propertiesfn eq(&self, other: &Properties) -> bool[src]
fn eq(&self, other: &Properties) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Properties) -> bool[src]
fn ne(&self, other: &Properties) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for Properties
impl Send for Propertiesimpl Sync for Properties
impl Sync for Properties