[][src]Struct azul_core::app_resources::ClusterInfo

pub struct ClusterInfo {
    pub cluster_idx: usize,
    pub codepoint: u32,
    pub glyph_idx: usize,
}

Info about what cluster a certain glyph belongs to.

Fields

cluster_idx: usize

Cluster index in this word

codepoint: u32

Codepoint of this cluster

glyph_idx: usize

What the glyph index of this cluster is

Trait Implementations

impl Clone for ClusterInfo[src]

impl Copy for ClusterInfo[src]

impl Debug for ClusterInfo[src]

impl Eq for ClusterInfo[src]

impl Hash for ClusterInfo[src]

impl Ord for ClusterInfo[src]

impl PartialEq<ClusterInfo> for ClusterInfo[src]

impl PartialOrd<ClusterInfo> for ClusterInfo[src]

impl StructuralEq for ClusterInfo[src]

impl StructuralPartialEq for ClusterInfo[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.