Struct evegfx::commands::options::FontRef[][src]

pub struct FontRef(_);

A reference to a font previously registered in the coprocessor.

Implementations

impl FontRef[src]

pub fn new_raw(v: u8) -> Self[src]

Takes the given value modulo 32 and uses it to construct a font reference.

pub fn to_raw(self) -> u8[src]

Returns the raw representation of the font reference index. Although returned as a u8, the value is always less than 32.

Trait Implementations

impl Clone for FontRef[src]

impl Copy for FontRef[src]

impl Debug for FontRef[src]

impl Eq for FontRef[src]

impl PartialEq<FontRef> for FontRef[src]

impl StructuralEq for FontRef[src]

impl StructuralPartialEq for FontRef[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, 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.