[][src]Struct psf::Glyph

pub struct Glyph<'a> { /* fields omitted */ }

Store information about specific glyph.

Implementations

impl<'a> Glyph<'a>[src]

pub fn get(&self, x: usize, y: usize) -> Option<bool>[src]

Returns if specific point is set (true) or not (false).

x specifies the point from 0..self.width

y specifies the point from 0..self.height

pub fn width(&self) -> usize[src]

Returns width of the glyph

pub fn height(&self) -> usize[src]

Returns height of the glyph

Auto Trait Implementations

impl<'a> RefUnwindSafe for Glyph<'a>

impl<'a> Send for Glyph<'a>

impl<'a> Sync for Glyph<'a>

impl<'a> Unpin for Glyph<'a>

impl<'a> UnwindSafe for Glyph<'a>

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.