sel4_driver_interfaces

Struct WrappedRefCell

Source
pub struct WrappedRefCell<T>(pub T);

Tuple Fields§

§0: T

Trait Implementations§

Source§

impl<T: Deref<Target = RefCell<U>>, U: Clock> Clock for &WrappedRefCell<T>

Source§

fn get_time(&mut self) -> Result<Duration, Self::Error>

Source§

impl<T: Clone> Clone for WrappedRefCell<T>

Source§

fn clone(&self) -> WrappedRefCell<T>

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Deref<Target = RefCell<U>>, U: DateTimeAccess> DateTimeAccess for &WrappedRefCell<T>

Source§

type Error = WrappedRefCellError<<U as DateTimeAccess>::Error>

Error type
Source§

fn datetime(&mut self) -> Result<NaiveDateTime, Self::Error>

Read the date and time.
Source§

fn set_datetime(&mut self, datetime: &NaiveDateTime) -> Result<(), Self::Error>

Set the date and time. Read more
Source§

impl<T: Debug> Debug for WrappedRefCell<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: Default> Default for WrappedRefCell<T>

Source§

fn default() -> WrappedRefCell<T>

Returns the “default value” for a type. Read more
Source§

impl<T: Deref<Target = RefCell<U>>, U: ErrorType> ErrorType for &WrappedRefCell<T>

Source§

impl<T: Deref<Target = RefCell<U>>, U: ErrorType> ErrorType for &WrappedRefCell<T>

Source§

impl<T: Deref<Target = RefCell<U>>, U: GetBlockDeviceLayout> GetBlockDeviceLayout for &WrappedRefCell<T>

Source§

type Error = WrappedRefCellError<<U as GetBlockDeviceLayout>::Error>

Source§

fn get_block_size(&mut self) -> Result<usize, Self::Error>

Source§

fn get_num_blocks(&mut self) -> Result<u64, Self::Error>

Source§

impl<T: Deref<Target = RefCell<U>>, U: GetNetDeviceMeta> GetNetDeviceMeta for &WrappedRefCell<T>

Source§

impl<T: Hash> Hash for WrappedRefCell<T>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given [Hasher]. Read more
1.3.0§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given [Hasher]. Read more
Source§

impl<T: Ord> Ord for WrappedRefCell<T>

Source§

fn cmp(&self, other: &WrappedRefCell<T>) -> Ordering

This method returns an [Ordering] between self and other. Read more
1.21.0§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<T: PartialEq> PartialEq for WrappedRefCell<T>

Source§

fn eq(&self, other: &WrappedRefCell<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T: PartialOrd> PartialOrd for WrappedRefCell<T>

Source§

fn partial_cmp(&self, other: &WrappedRefCell<T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<Word: Copy, T: Deref<Target = RefCell<U>>, U: Read<Word>> Read<Word> for &WrappedRefCell<T>

Source§

fn read(&mut self) -> Result<Word, Self::Error>

Reads a single word from the serial interface
Source§

impl<T: Deref<Target = RefCell<U>>, U: Timer> Timer for &WrappedRefCell<T>

Source§

fn set_timeout(&mut self, relative: Duration) -> Result<(), Self::Error>

Source§

fn clear_timeout(&mut self) -> Result<(), Self::Error>

Source§

impl<T: Deref<Target = RefCell<U>>, U: Timers> Timers for &WrappedRefCell<T>

Source§

type TimerLayout = <U as Timers>::TimerLayout

Source§

type Timer = <U as Timers>::Timer

Source§

fn timer_layout(&mut self) -> Result<Self::TimerLayout, Self::Error>

Source§

fn set_timeout_on( &mut self, timer: Self::Timer, relative: Duration, ) -> Result<(), Self::Error>

Source§

fn clear_timeout_on(&mut self, timer: Self::Timer) -> Result<(), Self::Error>

Source§

impl<Word: Copy, T: Deref<Target = RefCell<U>>, U: Write<Word>> Write<Word> for &WrappedRefCell<T>

Source§

fn write(&mut self, word: Word) -> Result<(), Self::Error>

Writes a single word to the serial interface.
Source§

fn flush(&mut self) -> Result<(), Self::Error>

Ensures that none of the previously written words are still buffered.
Source§

impl<T: Copy> Copy for WrappedRefCell<T>

Source§

impl<T: Eq> Eq for WrappedRefCell<T>

Source§

impl<T> StructuralPartialEq for WrappedRefCell<T>

Auto Trait Implementations§

§

impl<T> Freeze for WrappedRefCell<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for WrappedRefCell<T>
where T: RefUnwindSafe,

§

impl<T> Send for WrappedRefCell<T>
where T: Send,

§

impl<T> Sync for WrappedRefCell<T>
where T: Sync,

§

impl<T> Unpin for WrappedRefCell<T>
where T: Unpin,

§

impl<T> UnwindSafe for WrappedRefCell<T>
where T: UnwindSafe,

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.