[][src]Struct rubidium::Mode5Frame

#[repr(transparent)]pub struct Mode5Frame { /* fields omitted */ }

One of the two bitmap frames available in Mode 5.

See Mode5

Methods

impl Mode5Frame[src]

#[must_use]pub fn row(self, row: usize) -> Mode5Row[src]

Indexes by row to get a row out of this frame.

Panics

If the index is out of bounds.

#[must_use]pub fn x(self, x: usize) -> Mode5Col[src]

Indexes by x to get a column out of this frame.

Panics

If the index is out of bounds.

Trait Implementations

impl Clone for Mode5Frame[src]

impl Copy for Mode5Frame[src]

impl Debug for Mode5Frame[src]

impl Default for Mode5Frame[src]

impl Eq for Mode5Frame[src]

impl PartialEq<Mode5Frame> for Mode5Frame[src]

impl StructuralEq for Mode5Frame[src]

impl StructuralPartialEq for Mode5Frame[src]

Auto Trait Implementations

impl Send for Mode5Frame

impl Sync for Mode5Frame

impl Unpin for Mode5Frame

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.