[][src]Struct alacritty::renderer::InstanceData

#[repr(C)]struct InstanceData {
    col: u16,
    row: u16,
    left: i16,
    top: i16,
    width: i16,
    height: i16,
    uv_left: f32,
    uv_bot: f32,
    uv_width: f32,
    uv_height: f32,
    r: u8,
    g: u8,
    b: u8,
    cell_flags: RenderingGlyphFlags,
    bg_r: u8,
    bg_g: u8,
    bg_b: u8,
    bg_a: u8,
}

Fields

col: u16row: u16left: i16top: i16width: i16height: i16uv_left: f32uv_bot: f32uv_width: f32uv_height: f32r: u8g: u8b: u8cell_flags: RenderingGlyphFlagsbg_r: u8bg_g: u8bg_b: u8bg_a: u8

Trait Implementations

impl Debug for InstanceData[src]

Auto Trait Implementations

impl RefUnwindSafe for InstanceData

impl Send for InstanceData

impl Sync for InstanceData

impl Unpin for InstanceData

impl UnwindSafe for InstanceData

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.