pub struct ParallelDisplayInterface<CS, DC, D> { /* private fields */ }Implementations§
Source§impl<CS: OutputPin, DC: OutputPin, D: DisplayDataLines> ParallelDisplayInterface<CS, DC, D>
impl<CS: OutputPin, DC: OutputPin, D: DisplayDataLines> ParallelDisplayInterface<CS, DC, D>
pub fn new(cs: CS, dc: DC, data_lines: D) -> ParallelDisplayInterface<CS, DC, D>
Trait Implementations§
Source§impl<CS: OutputPin, DC: OutputPin, D: DisplayDataLines> WriteOnlyDataCommand for ParallelDisplayInterface<CS, DC, D>
impl<CS: OutputPin, DC: OutputPin, D: DisplayDataLines> WriteOnlyDataCommand for ParallelDisplayInterface<CS, DC, D>
Source§fn send_commands(&mut self, cmds: DataFormat<'_>) -> Result<(), DisplayError>
fn send_commands(&mut self, cmds: DataFormat<'_>) -> Result<(), DisplayError>
Send a batch of commands to display
Source§fn send_data(&mut self, buf: DataFormat<'_>) -> Result<(), DisplayError>
fn send_data(&mut self, buf: DataFormat<'_>) -> Result<(), DisplayError>
Send pixel data to display
Auto Trait Implementations§
impl<CS, DC, D> Freeze for ParallelDisplayInterface<CS, DC, D>
impl<CS, DC, D> RefUnwindSafe for ParallelDisplayInterface<CS, DC, D>
impl<CS, DC, D> Send for ParallelDisplayInterface<CS, DC, D>
impl<CS, DC, D> Sync for ParallelDisplayInterface<CS, DC, D>
impl<CS, DC, D> Unpin for ParallelDisplayInterface<CS, DC, D>
impl<CS, DC, D> UnsafeUnpin for ParallelDisplayInterface<CS, DC, D>
impl<CS, DC, D> UnwindSafe for ParallelDisplayInterface<CS, DC, D>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more