Struct zng::font::font_features::FontFeaturesBuilder

source ·
pub struct FontFeaturesBuilder(/* private fields */);
Expand description

A builder for FontFeatures.

§Examples

let features = FontFeatures::builder().kerning(false).build();

Implementations§

source§

impl FontFeaturesBuilder

source

pub fn build(self) -> FontFeatures

Finish building.

source

pub fn feature( self, name: FontFeatureName, state: impl Into<FontFeatureState>, ) -> FontFeaturesBuilder

Set the named feature.

source

pub fn feature_set( self, names: &'static [FontFeatureName], state: impl Into<FontFeatureState>, ) -> FontFeaturesBuilder

Sets all the named features to the same value.

§Panics

If names has less than 2 names.

source

pub fn feature_exclusive_set<S>( self, state: impl Into<S>, ) -> FontFeaturesBuilder

Sets a single feature of a set of features.

§Panics

If S::names() has less than 2 names.

source

pub fn feature_exclusive_sets<S>( self, state: impl Into<S>, ) -> FontFeaturesBuilder

Sets the features that represent the state.

§Panics

If S::names() has less than 2 entries.

source§

impl FontFeaturesBuilder

source

pub fn caps(self, state: impl Into<CapsVariant>) -> FontFeaturesBuilder

Font capital glyph variants.

See CapsVariant for more details.

source

pub fn kerning(self, state: impl Into<FontFeatureState>) -> FontFeaturesBuilder

Allow glyphs boundaries to overlap for a more pleasant reading.

This corresponds to the kern feature.

Auto always activates these kerning.

source

pub fn common_lig( self, state: impl Into<FontFeatureState>, ) -> FontFeaturesBuilder

The most common ligatures, like for fi, ffi, th or similar.

This corresponds to OpenType liga and clig features.

Auto always activates these ligatures.

source

pub fn discretionary_lig( self, state: impl Into<FontFeatureState>, ) -> FontFeaturesBuilder

Ligatures specific to the font, usually decorative.

This corresponds to OpenType dlig feature.

Auto usually disables these ligatures.

source

pub fn historical_lig( self, state: impl Into<FontFeatureState>, ) -> FontFeaturesBuilder

Ligatures used historically, in old books, like the German tz digraph being displayed ß.

This corresponds to OpenType hlig feature.

Auto usually disables these ligatures.

source

pub fn contextual_alt( self, state: impl Into<FontFeatureState>, ) -> FontFeaturesBuilder

Alternative letters that adapt to their surrounding letters.

This corresponds to OpenType calt feature.

Auto usually activates this feature.

source

pub fn ordinal(self, state: impl Into<FontFeatureState>) -> FontFeaturesBuilder

Force usage of ordinal special glyphs, 1a becomes 1ª.

This corresponds to OpenType ordn feature.

Auto deactivates this feature.

source

pub fn slashed_zero( self, state: impl Into<FontFeatureState>, ) -> FontFeaturesBuilder

Force use of a slashed zero for 0.

This corresponds to OpenType zero feature.

Auto deactivates this feature.

source

pub fn swash(self, state: impl Into<FontFeatureState>) -> FontFeaturesBuilder

Use swashes flourish style.

Fonts can have alternative swash styles, you can select then by enabling a number.

This corresponds to OpenType swsh and cswh feature.

Auto does not use swashes.

source

pub fn stylistic( self, state: impl Into<FontFeatureState>, ) -> FontFeaturesBuilder

Use stylistic alternatives.

Fonts can have multiple alternative styles, you can select then by enabling a number.

This corresponds to OpenType salt feature.

Auto does not use alternative styles.

source

pub fn historical_forms( self, state: impl Into<FontFeatureState>, ) -> FontFeaturesBuilder

Use glyphs that were common in the past but not today.

This corresponds to OpenType hist feature.

Auto does not use alternative styles.

source

pub fn ornaments( self, state: impl Into<FontFeatureState>, ) -> FontFeaturesBuilder

Replace letter with fleurons, dingbats and border elements.

Fonts can have multiple alternative styles, you can select then by enabling a number.

This corresponds to OpenType ornm feature.

Auto does not enable this by default, but some fonts are purely dingbats glyphs.

source

pub fn annotation( self, state: impl Into<FontFeatureState>, ) -> FontFeaturesBuilder

Font annotation alternatives, like circled digits or inverted characters.

Fonts can have multiple alternative styles, you can select then by enabling a number.

This corresponds to OpenType nalt feature.

Auto does not use alternative styles.

source

pub fn numeric(self, state: impl Into<NumVariant>) -> FontFeaturesBuilder

Font numeric glyph variants.

See NumVariant for more details.

source

pub fn num_spacing(self, state: impl Into<NumSpacing>) -> FontFeaturesBuilder

Font numeric spacing variants.

See NumSpacing for more details.

source

pub fn num_fraction(self, state: impl Into<NumFraction>) -> FontFeaturesBuilder

Font numeric spacing variants.

See NumSpacing for more details.

source

pub fn style_set(self, state: impl Into<FontStyleSet>) -> FontFeaturesBuilder

Font stylistic alternatives for sets of characters.

See FontStyleSet for more details.

source

pub fn char_variant(self, state: impl Into<CharVariant>) -> FontFeaturesBuilder

Font stylistic alternatives for individual characters.

See CharVariant for more details.

source

pub fn position(self, state: impl Into<FontPosition>) -> FontFeaturesBuilder

Font sub/super script alternatives.

See FontPosition for more details.

source

pub fn ruby(self, state: impl Into<FontFeatureState>) -> FontFeaturesBuilder

Force the use of ruby (rubi) glyph variants.

This corresponds to OpenType ruby feature.

Auto does not force the use of ruby variants.

source

pub fn jp_variant(self, state: impl Into<JpVariant>) -> FontFeaturesBuilder

Japanese logographic set selection.

See JpVariant for more details.

source

pub fn horizontal_kana( self, state: impl Into<FontFeatureState>, ) -> FontFeaturesBuilder

Use kana glyphs optimized for horizontal writing.

This corresponds to OpenType hkna feature.

source

pub fn cn_variant(self, state: impl Into<CnVariant>) -> FontFeaturesBuilder

Chinese logographic set selection.

See CnVariant for more details.

source

pub fn ea_width(self, state: impl Into<EastAsianWidth>) -> FontFeaturesBuilder

East Asian figure width control

See EastAsianWidth for more details.

Trait Implementations§

source§

impl Default for FontFeaturesBuilder

source§

fn default() -> FontFeaturesBuilder

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> NoneValue for T
where T: Default,

§

type NoneType = T

§

fn null_value() -> T

The none-equivalent value.
§

impl<T> NoneValue for T
where T: Default,

§

type NoneType = T

§

fn null_value() -> T

The none-equivalent value.
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<R, P> ReadPrimitive<R> for P
where R: Read + ReadEndian<P>, P: Default,

source§

fn read_from_little_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().
source§

fn read_from_big_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().
source§

fn read_from_native_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T

source§

impl<T> StateValue for T
where T: Any + Send + Sync,