Struct klaptik::Grid

source ·
pub struct Grid<L: Layout, const LEN: usize> { /* private fields */ }

Implementations§

source§

impl<L, const LEN: usize> Grid<L, LEN>where L: Layout,

source

pub fn new<SI: Into<SpriteId>>( sprite_id: SI, val: &str, origin: Point, sprite_size: Size ) -> Self

source§

impl<L: Layout, const LEN: usize> Grid<L, LEN>

source

pub fn set_glyph(&mut self, idx: usize, glyph: Glyph)

Trait Implementations§

source§

impl<L: Layout, const LEN: usize> Widget<&[u8; LEN]> for Grid<L, LEN>

source§

fn update(&mut self, state: &[Glyph; LEN])

source§

fn invalidate(&mut self)

source§

fn render<D: Display>(&mut self, display: &mut D)

source§

impl<L: Layout, const LEN: usize> Write for Grid<L, LEN>

source§

fn write_str(&mut self, s: &str) -> Result

Writes a string slice into this writer, returning whether the write succeeded. Read more
1.1.0 · source§

fn write_char(&mut self, c: char) -> Result<(), Error>

Writes a char into this writer, returning whether the write succeeded. Read more
1.0.0 · source§

fn write_fmt(&mut self, args: Arguments<'_>) -> Result<(), Error>

Glue for usage of the write! macro with implementors of this trait. Read more

Auto Trait Implementations§

§

impl<L, const LEN: usize> RefUnwindSafe for Grid<L, LEN>where L: RefUnwindSafe,

§

impl<L, const LEN: usize> Send for Grid<L, LEN>where L: Send,

§

impl<L, const LEN: usize> Sync for Grid<L, LEN>where L: Sync,

§

impl<L, const LEN: usize> Unpin for Grid<L, LEN>where L: Unpin,

§

impl<L, const LEN: usize> UnwindSafe for Grid<L, LEN>where L: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.