Struct st7032i::St7032i

source ·
pub struct St7032i<'a, I, W, A, D, N = Two, DH = Single>
where W: Write<A> + WriteIter<A>, A: AddressMode + Copy, D: From<ExecutionTime>, N: DisplayRows, DH: CharacterHeight,
{ /* private fields */ }

Implementations§

source§

impl<'a, W, A, D, N, DH> St7032i<'a, Unknown, W, A, D, N, DH>
where W: Write<A> + WriteIter<A>, A: AddressMode + Copy, D: From<ExecutionTime>, N: DisplayRows, DH: CharacterHeight,

source

pub fn new(dev: &'a mut W, addr: A) -> Self

source§

impl<'a, I, W, A, D, N, DH> St7032i<'a, I, W, A, D, N, DH>
where W: Write<A> + WriteIter<A>, A: AddressMode + Copy, D: From<ExecutionTime>, N: DisplayRows, DH: CharacterHeight,

source

pub fn set_instruction_set<ITarget: InstructionSet>( self, ) -> Result<(St7032i<'a, ITarget, W, A, D, N, DH>, D), <W as Write<A>>::Error>

source

pub fn write_raw(&mut self, data: &[u8]) -> Result<(), <W as Write<A>>::Error>

source

pub fn write_iter_raw<B>( &mut self, data: B, ) -> Result<(), <W as WriteIter<A>>::Error>
where B: IntoIterator<Item = u8>,

source§

impl<'a, I, W, A, D, N, DH> St7032i<'a, I, W, A, D, N, DH>
where I: InstructionSet, W: Write<A> + WriteIter<A>, A: AddressMode + Copy, D: From<ExecutionTime>, N: DisplayRows, DH: CharacterHeight,

source

pub fn cmd_clear_display(&mut self) -> Result<D, <W as Write<A>>::Error>

source

pub fn cmd_display_on_off( &mut self, display: bool, cursor: bool, cursor_blink: bool, ) -> Result<D, <W as Write<A>>::Error>

source

pub fn cmd_set_ddram_address( &mut self, addr: u8, ) -> Result<D, <W as Write<A>>::Error>

source

pub fn cmd_write_chars<C>( &mut self, chars: C, ) -> Result<D, <W as WriteIter<A>>::Error>
where C: IntoIterator<Item = Character>, C::IntoIter: Iterator<Item = C::Item> + Clone,

source

pub fn cmd_write_bytes<C>( &mut self, bytes: C, ) -> Result<D, <W as WriteIter<A>>::Error>
where C: IntoIterator<Item = u8>, C::IntoIter: Iterator<Item = C::Item> + Clone,

source§

impl<'a, W, A, D, N, DH> St7032i<'a, Normal, W, A, D, N, DH>
where W: Write<A> + WriteIter<A>, A: AddressMode + Copy, D: From<ExecutionTime>, N: DisplayRows, DH: CharacterHeight,

source

pub fn cmd_set_cgram_address( &mut self, addr: u8, ) -> Result<D, <W as Write<A>>::Error>

source§

impl<'a, W, A, D, N, DH> St7032i<'a, Extention, W, A, D, N, DH>
where W: Write<A> + WriteIter<A>, A: AddressMode + Copy, D: From<ExecutionTime>, N: DisplayRows, DH: CharacterHeight,

source

pub fn cmd_internal_osc_frequency( &mut self, ) -> Result<D, <W as Write<A>>::Error>

source

pub fn cmd_power_icon_contrast_set( &mut self, icon: bool, booster: bool, contrast_hi2: u8, ) -> Result<D, <W as Write<A>>::Error>

source

pub fn cmd_follower_control( &mut self, enable: bool, ratio: u8, ) -> Result<D, <W as Write<A>>::Error>

source

pub fn cmd_contrast_set( &mut self, contrast_low4: u8, ) -> Result<D, <W as Write<A>>::Error>

Trait Implementations§

source§

impl<'a, W, A, D, N, DH> Write for St7032i<'a, Normal, W, A, D, N, DH>
where W: Write<A> + WriteIter<A>, A: AddressMode + Copy, D: From<ExecutionTime>, N: DisplayRows, DH: CharacterHeight,

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<'a, I, W, A, D, N, DH> Freeze for St7032i<'a, I, W, A, D, N, DH>
where A: Freeze,

§

impl<'a, I, W, A, D, N, DH> RefUnwindSafe for St7032i<'a, I, W, A, D, N, DH>

§

impl<'a, I, W, A, D, N, DH> Send for St7032i<'a, I, W, A, D, N, DH>
where A: Send, W: Send, I: Send, D: Send, N: Send, DH: Send,

§

impl<'a, I, W, A, D, N, DH> Sync for St7032i<'a, I, W, A, D, N, DH>
where A: Sync, W: Sync, I: Sync, D: Sync, N: Sync, DH: Sync,

§

impl<'a, I, W, A, D, N, DH> Unpin for St7032i<'a, I, W, A, D, N, DH>
where A: Unpin, I: Unpin, D: Unpin, N: Unpin, DH: Unpin,

§

impl<'a, I, W, A, D, N = Two, DH = Single> !UnwindSafe for St7032i<'a, I, W, A, D, N, DH>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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 T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.