Struct capsules_extra::lpm013m126::Lpm013m126
source · pub struct Lpm013m126<'a, A: Alarm<'a>, P: Pin, S: SpiMasterDevice<'a>> { /* private fields */ }
Implementations§
source§impl<'a, A: Alarm<'a>, P: Pin, S: SpiMasterDevice<'a>> Lpm013m126<'a, A, P, S>where
Self: 'static,
impl<'a, A: Alarm<'a>, P: Pin, S: SpiMasterDevice<'a>> Lpm013m126<'a, A, P, S>where
Self: 'static,
Trait Implementations§
source§impl<'a, A: Alarm<'a>, P: Pin, S: SpiMasterDevice<'a>> AlarmClient for Lpm013m126<'a, A, P, S>where
Self: 'static,
impl<'a, A: Alarm<'a>, P: Pin, S: SpiMasterDevice<'a>> AlarmClient for Lpm013m126<'a, A, P, S>where
Self: 'static,
source§impl<'a, A: Alarm<'a>, P: Pin, S: SpiMasterDevice<'a>> Screen<'a> for Lpm013m126<'a, A, P, S>where
Self: 'static,
impl<'a, A: Alarm<'a>, P: Pin, S: SpiMasterDevice<'a>> Screen<'a> for Lpm013m126<'a, A, P, S>where
Self: 'static,
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,
data: SubSliceMut<'static, u8>,
_continue_write: bool,
) -> Result<(), ErrorCode>
fn write( &self, data: SubSliceMut<'static, u8>, _continue_write: bool, ) -> Result<(), ErrorCode>
Write data from
buffer
to the selected write frame. Read moresource§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 set_power(&self, enable: bool) -> Result<(), ErrorCode>
fn set_power(&self, enable: bool) -> Result<(), ErrorCode>
Controls the screen power supply. Read more
source§impl<'a, A: Alarm<'a>, P: Pin, S: SpiMasterDevice<'a>> ScreenSetup<'a> for Lpm013m126<'a, A, P, S>
impl<'a, A: Alarm<'a>, P: Pin, S: SpiMasterDevice<'a>> ScreenSetup<'a> for Lpm013m126<'a, A, P, S>
fn set_client(&self, _client: &'a dyn ScreenSetupClient)
source§fn set_resolution(&self, resolution: (usize, usize)) -> Result<(), ErrorCode>
fn set_resolution(&self, resolution: (usize, usize)) -> Result<(), ErrorCode>
Set the screen resolution in pixels with
(X, Y)
. Read moresource§fn set_pixel_format(&self, format: ScreenPixelFormat) -> Result<(), ErrorCode>
fn set_pixel_format(&self, format: ScreenPixelFormat) -> Result<(), ErrorCode>
Set the pixel format. Read more
source§fn set_rotation(&self, _rotation: ScreenRotation) -> Result<(), ErrorCode>
fn set_rotation(&self, _rotation: ScreenRotation) -> Result<(), ErrorCode>
Set the rotation of the display. Read more
source§fn get_num_supported_resolutions(&self) -> usize
fn get_num_supported_resolutions(&self) -> usize
Get the number of supported resolutions. Read more
source§fn get_supported_resolution(&self, index: usize) -> Option<(usize, usize)>
fn get_supported_resolution(&self, index: usize) -> Option<(usize, usize)>
Get the resolution specified by the given index. Read more
source§fn get_num_supported_pixel_formats(&self) -> usize
fn get_num_supported_pixel_formats(&self) -> usize
Get the number of the pixel formats supported. Read more
source§fn get_supported_pixel_format(&self, index: usize) -> Option<ScreenPixelFormat>
fn get_supported_pixel_format(&self, index: usize) -> Option<ScreenPixelFormat>
Get the pixel format specified by the given index. Read more
source§impl<'a, A: Alarm<'a>, P: Pin, S: SpiMasterDevice<'a>> SpiMasterClient for Lpm013m126<'a, A, P, S>
impl<'a, A: Alarm<'a>, P: Pin, S: SpiMasterDevice<'a>> SpiMasterClient for Lpm013m126<'a, A, P, S>
source§fn read_write_done(
&self,
write_buffer: SubSliceMut<'static, u8>,
_read_buffer: Option<SubSliceMut<'static, u8>>,
status: Result<usize, ErrorCode>,
)
fn read_write_done( &self, write_buffer: SubSliceMut<'static, u8>, _read_buffer: Option<SubSliceMut<'static, u8>>, status: Result<usize, ErrorCode>, )
Callback issued when a read/write operation finishes. Read more
Auto Trait Implementations§
impl<'a, A, P, S> !Freeze for Lpm013m126<'a, A, P, S>
impl<'a, A, P, S> !RefUnwindSafe for Lpm013m126<'a, A, P, S>
impl<'a, A, P, S> !Send for Lpm013m126<'a, A, P, S>
impl<'a, A, P, S> !Sync for Lpm013m126<'a, A, P, S>
impl<'a, A, P, S> Unpin for Lpm013m126<'a, A, P, S>
impl<'a, A, P, S> !UnwindSafe for Lpm013m126<'a, A, P, 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