[][src]Struct freetype::library::Library

pub struct Library { /* fields omitted */ }

Implementations

impl Library[src]

pub fn init() -> FtResult<Self>[src]

This function is used to create a new FreeType library instance and add the default modules. It returns a struct encapsulating the freetype library. The library is correctly discarded when the struct is dropped.

pub fn new_face<P>(&self, path: P, face_index: isize) -> FtResult<Face> where
    P: AsRef<OsStr>, 
[src]

Open a font file using its pathname. face_index should be 0 if there is only 1 font in the file.

pub fn new_stroker(&self) -> FtResult<Stroker>[src]

pub fn new_memory_face<T>(&self, buffer: T, face_index: isize) -> FtResult<Face> where
    T: Into<Rc<Vec<u8>>>, 
[src]

Similar to new_face, but loads file data from a byte array in memory

pub fn set_lcd_filter(&self, lcd_filter: LcdFilter) -> FtResult<()>[src]

pub fn raw(&self) -> FT_Library[src]

Get the underlying library object

Trait Implementations

impl Drop for Library[src]

Auto Trait Implementations

impl RefUnwindSafe for Library

impl !Send for Library

impl !Sync for Library

impl Unpin for Library

impl UnwindSafe for Library

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, 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.