pub struct ScreenARGB8888ToMono8BitPage<'a, S: Screen<'a>> { /* private fields */ }
Expand description
Convert an ARGB8888 formatted screen to a Mono8BitPage formatted screen of the same resolution.
All pixels are converted to mono (black and white)
Implementations§
Trait Implementations§
Source§impl<'a, S: Screen<'a>> Screen<'a> for ScreenARGB8888ToMono8BitPage<'a, S>
impl<'a, S: Screen<'a>> Screen<'a> for ScreenARGB8888ToMono8BitPage<'a, S>
Source§fn set_client(&self, client: &'a dyn ScreenClient)
fn set_client(&self, client: &'a dyn ScreenClient)
Set the object to receive the asynchronous command callbacks.
Source§fn get_resolution(&self) -> (usize, usize)
fn get_resolution(&self) -> (usize, usize)
Get a tuple
(width, height)
with the current resolution (in pixels). Read moreSource§fn get_pixel_format(&self) -> ScreenPixelFormat
fn get_pixel_format(&self) -> ScreenPixelFormat
Get the current pixel format. Read more
Source§fn get_rotation(&self) -> ScreenRotation
fn get_rotation(&self) -> ScreenRotation
Get the current rotation. Read more
Source§fn set_write_frame(
&self,
x: usize,
y: usize,
width: usize,
height: usize,
) -> Result<(), ErrorCode>
fn set_write_frame( &self, x: usize, y: usize, width: usize, height: usize, ) -> Result<(), ErrorCode>
Sets the write frame. Read more
Source§fn write(
&self,
buffer: SubSliceMut<'static, u8>,
continue_write: bool,
) -> Result<(), ErrorCode>
fn write( &self, buffer: SubSliceMut<'static, u8>, continue_write: bool, ) -> Result<(), ErrorCode>
Write data from
buffer
to the selected write frame. Read moreSource§fn set_brightness(&self, brightness: u16) -> Result<(), ErrorCode>
fn set_brightness(&self, brightness: u16) -> Result<(), ErrorCode>
Set the display brightness value. Read more
Source§impl<'a, S: Screen<'a>> ScreenClient for ScreenARGB8888ToMono8BitPage<'a, S>
impl<'a, S: Screen<'a>> ScreenClient for ScreenARGB8888ToMono8BitPage<'a, S>
Source§fn command_complete(&self, result: Result<(), ErrorCode>)
fn command_complete(&self, result: Result<(), ErrorCode>)
The screen will call this function to notify that a command (except
write) has finished.
Source§fn write_complete(
&self,
buffer: SubSliceMut<'static, u8>,
_result: Result<(), ErrorCode>,
)
fn write_complete( &self, buffer: SubSliceMut<'static, u8>, _result: Result<(), ErrorCode>, )
The screen will call this function to notify that the write command has
finished. This is different from
command_complete
as it has to pass
back the write bufferSource§fn screen_is_ready(&self)
fn screen_is_ready(&self)
Some screens need some time to start, this function is called when the
screen is ready.
Auto Trait Implementations§
impl<'a, S> !Freeze for ScreenARGB8888ToMono8BitPage<'a, S>
impl<'a, S> !RefUnwindSafe for ScreenARGB8888ToMono8BitPage<'a, S>
impl<'a, S> !Send for ScreenARGB8888ToMono8BitPage<'a, S>
impl<'a, S> !Sync for ScreenARGB8888ToMono8BitPage<'a, S>
impl<'a, S> Unpin for ScreenARGB8888ToMono8BitPage<'a, S>
impl<'a, S> !UnwindSafe for ScreenARGB8888ToMono8BitPage<'a, S>
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