[][src]Struct ilmenite::font::ImtFont

pub struct ImtFont { /* fields omitted */ }

Implementations

impl ImtFont[src]

pub fn from_file<F: Into<String>, P: AsRef<Path>>(
    family: F,
    weight: ImtWeight,
    raster_ops: ImtRasterOps,
    device: Arc<Device>,
    queue: Arc<Queue>,
    path: P
) -> Result<ImtFont, ImtError>
[src]

pub fn from_bytes<F: Into<String>>(
    family: F,
    weight: ImtWeight,
    raster_ops: ImtRasterOps,
    device: Arc<Device>,
    queue: Arc<Queue>,
    bytes: Vec<u8>
) -> Result<ImtFont, ImtError>
[src]

pub fn glyphs_for_text<T: AsRef<str>>(
    &self,
    text_height: f32,
    shape_ops: ImtShapeOpts,
    text: T
) -> Result<Vec<ImtGlyph>, ImtError>
[src]

Auto Trait Implementations

impl !RefUnwindSafe for ImtFont

impl Send for ImtFont

impl Sync for ImtFont

impl Unpin for ImtFont

impl !UnwindSafe for ImtFont

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> Content for T[src]

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

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

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.