pub struct ScreenSplitUser<'a, S: Screen<'a>> { /* private fields */ }
Expand description
An implementation of Screen
for a subregion
of the actual screen.
Implementations§
Source§impl<'a, S: Screen<'a>> ScreenSplitUser<'a, S>
impl<'a, S: Screen<'a>> ScreenSplitUser<'a, S>
pub fn new( mux: &'a ScreenSplitMux<'a, S>, x: usize, y: usize, width: usize, height: usize, ) -> Self
pub fn add_to_mux(&'a self)
Trait Implementations§
Source§impl<'a, S: Screen<'a>> ListNode<'a, ScreenSplitUser<'a, S>> for ScreenSplitUser<'a, S>
impl<'a, S: Screen<'a>> ListNode<'a, ScreenSplitUser<'a, S>> for ScreenSplitUser<'a, S>
fn next(&'a self) -> &'a ListLink<'a, ScreenSplitUser<'a, S>>
Source§impl<'a, S: Screen<'a>> Screen<'a> for ScreenSplitUser<'a, S>
impl<'a, S: Screen<'a>> Screen<'a> for ScreenSplitUser<'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 ScreenSplitUser<'a, S>
impl<'a, S: Screen<'a>> ScreenClient for ScreenSplitUser<'a, S>
Source§fn command_complete(&self, r: Result<(), ErrorCode>)
fn command_complete(&self, r: Result<(), ErrorCode>)
The screen will call this function to notify that a command (except
write) has finished.
Source§fn write_complete(
&self,
data: SubSliceMut<'static, u8>,
r: Result<(), ErrorCode>,
)
fn write_complete( &self, data: SubSliceMut<'static, u8>, r: 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 ScreenSplitUser<'a, S>
impl<'a, S> !RefUnwindSafe for ScreenSplitUser<'a, S>
impl<'a, S> !Send for ScreenSplitUser<'a, S>
impl<'a, S> !Sync for ScreenSplitUser<'a, S>
impl<'a, S> Unpin for ScreenSplitUser<'a, S>
impl<'a, S> !UnwindSafe for ScreenSplitUser<'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