Struct ScreenSplitMux

Source
pub struct ScreenSplitMux<'a, S: Screen<'a>> { /* private fields */ }
Expand description

Split-screen manager that multiplexes for multiple splits.

This enables two users (e.g., the kernel and all userspace apps) to share a single physical screen. Each split screen is assigned a fixed region.

Implementations§

Source§

impl<'a, S: Screen<'a>> ScreenSplitMux<'a, S>

Source

pub fn new(screen: &'a S) -> Self

Trait Implementations§

Source§

impl<'a, S: Screen<'a>> DeferredCallClient for ScreenSplitMux<'a, S>

Source§

fn handle_deferred_call(&self)

Software interrupt function that is called when the deferred call is triggered.
Source§

fn register(&'static self)

Source§

impl<'a, S: Screen<'a>> ScreenClient for ScreenSplitMux<'a, S>

Source§

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>, )

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 buffer
Source§

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 ScreenSplitMux<'a, S>

§

impl<'a, S> !RefUnwindSafe for ScreenSplitMux<'a, S>

§

impl<'a, S> !Send for ScreenSplitMux<'a, S>

§

impl<'a, S> !Sync for ScreenSplitMux<'a, S>

§

impl<'a, S> Unpin for ScreenSplitMux<'a, S>

§

impl<'a, S> !UnwindSafe for ScreenSplitMux<'a, S>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.