pub enum IncrementAxis {
Horizontal,
Vertical,
}Expand description
The address increment orientation when writing image data. This configures how the SSD1322 will
auto-increment the row and column addresses when image data is written using the
WriteImageData command.
Variants§
Horizontal
The column address will increment as image data is written, writing pairs of bytes
(horizontal groups of 4 pixels) from left to right in the range set by SetColumnAddress
command, and then top to bottom in the range set by SetRowAddress command.
Vertical
The row address will increment as image data is written, writing pairs of bytes
(horizontal groups of 4 pixels) from top to bottom in the range set by SetRowAddress
command, and then left to right in the range set by SetColumnAddress command.
Trait Implementations§
Source§impl Clone for IncrementAxis
impl Clone for IncrementAxis
Source§fn clone(&self) -> IncrementAxis
fn clone(&self) -> IncrementAxis
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IncrementAxis
Auto Trait Implementations§
impl Freeze for IncrementAxis
impl RefUnwindSafe for IncrementAxis
impl Send for IncrementAxis
impl Sync for IncrementAxis
impl Unpin for IncrementAxis
impl UnwindSafe for IncrementAxis
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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