Skip to main content

ClassDef

Enum ClassDef 

Source
pub enum ClassDef<'a> {
    Format1(ClassDefFormat1<'a>),
    Format2(ClassDefFormat2<'a>),
}
Expand description

Variants§

§

Format1(ClassDefFormat1<'a>)

§

Format2(ClassDefFormat2<'a>)

Implementations§

Source§

impl<'a> ClassDef<'a>

Source

pub fn offset_data(&self) -> FontData<'a>

Return the FontData used to resolve offsets for this table.

Source

pub fn class_format(&self) -> u16

Format identifier — format = 1

Source§

impl ClassDef<'_>

Source

pub fn get(&self, gid: impl Into<GlyphId>) -> u16

Get the class for this glyph id

Source

pub fn iter(&self) -> impl Iterator<Item = (GlyphId16, u16)> + '_

Iterate over each glyph and its class.

This will not include class 0 unless it has been explicitly assigned.

Source

pub fn population(&self) -> usize

Return the number of glyphs explicitly assigned to a class in this table

Source

pub fn cost(&self) -> u32

Return the cost of looking up a glyph in this table

Source

pub fn intersect_classes(&self, glyphs: &IntSet<GlyphId>) -> IntSet<u16>

Available on crate feature std only.

Returns class values for the intersected glyphs of this table and input ‘glyphs’ set.

Source

pub fn intersected_class_glyphs( &self, glyphs: &IntSet<GlyphId>, class: u16, ) -> IntSet<GlyphId>

Available on crate feature std only.

Returns intersected glyphs of this table and input ‘glyphs’ set that are assgiend to input class value.

Source

pub fn intersects_class_glyphs( &self, glyphs: &IntSet<GlyphId>, class: u16, ) -> bool

Available on crate feature std only.

Checks whether any glyph in the given glyphs set intersects with this table and is assigned to the specified class value.

Trait Implementations§

Source§

impl<'a> Clone for ClassDef<'a>

Source§

fn clone(&self) -> ClassDef<'a>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for ClassDef<'_>

Source§

fn default() -> Self

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

impl<'a> FontRead<'a> for ClassDef<'a>

Source§

fn read_with_args(data: FontData<'a>, _: ()) -> Result<Self, ReadError>

Read an item, performing validation. Read more
Source§

fn read(data: FontData<'a>) -> Result<Self, ReadError>
where Self: FontRead<'a, Args = ()>,

Read an instance of Self from the provided data, performing validation. Read more
Source§

impl Intersect for ClassDef<'_>

Available on crate feature std only.
Source§

fn intersects(&self, glyph_set: &IntSet<GlyphId>) -> Result<bool, ReadError>

Source§

impl<'a> MinByteRange<'a> for ClassDef<'a>

Source§

impl ReadArgs for ClassDef<'_>

Auto Trait Implementations§

§

impl<'a> Freeze for ClassDef<'a>

§

impl<'a> RefUnwindSafe for ClassDef<'a>

§

impl<'a> Send for ClassDef<'a>

§

impl<'a> Sync for ClassDef<'a>

§

impl<'a> Unpin for ClassDef<'a>

§

impl<'a> UnsafeUnpin for ClassDef<'a>

§

impl<'a> UnwindSafe for ClassDef<'a>

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
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.