Struct sel4_async_io::EmbeddedIOAsyncAdapter

source ·
pub struct EmbeddedIOAsyncAdapter<T>(pub T);

Tuple Fields§

§0: T

Trait Implementations§

source§

impl<T: Clone> Clone for EmbeddedIOAsyncAdapter<T>

source§

fn clone(&self) -> EmbeddedIOAsyncAdapter<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: Debug> Debug for EmbeddedIOAsyncAdapter<T>

source§

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

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

impl<T: ErrorType> ErrorType for EmbeddedIOAsyncAdapter<T>

source§

type Error = <T as ErrorType>::Error

Error type of all the IO operations on this type.
source§

impl<T: Hash> Hash for EmbeddedIOAsyncAdapter<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 EmbeddedIOAsyncAdapter<T>

source§

fn cmp(&self, other: &EmbeddedIOAsyncAdapter<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 + PartialOrd,

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

impl<T: PartialEq> PartialEq for EmbeddedIOAsyncAdapter<T>

source§

fn eq(&self, other: &EmbeddedIOAsyncAdapter<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 EmbeddedIOAsyncAdapter<T>

source§

fn partial_cmp(&self, other: &EmbeddedIOAsyncAdapter<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<T> Read for EmbeddedIOAsyncAdapter<T>
where T: Read + Unpin,

source§

async fn read(&mut self, buf: &mut [u8]) -> Result<usize, Self::Error>

Read some bytes from this source into the specified buffer, returning how many bytes were read. Read more
source§

async fn read_exact( &mut self, buf: &mut [u8], ) -> Result<(), ReadExactError<Self::Error>>

Read the exact number of bytes required to fill buf. Read more
source§

impl<T> Read for EmbeddedIOAsyncAdapter<T>
where T: Read + ReadCancelSafe + Unpin,

source§

fn poll_read( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &mut [u8], ) -> Poll<Result<usize, Self::Error>>

source§

impl<T> Write for EmbeddedIOAsyncAdapter<T>
where T: Write + Unpin,

source§

async fn write(&mut self, buf: &[u8]) -> Result<usize, Self::Error>

Write a buffer into this writer, returning how many bytes were written. Read more
source§

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

Flush this output stream, ensuring that all intermediately buffered contents reach their destination.
source§

async fn write_all(&mut self, buf: &[u8]) -> Result<(), Self::Error>

Write an entire buffer into this writer. Read more
source§

impl<T> Write for EmbeddedIOAsyncAdapter<T>
where T: Write + WriteCancelSafe + Unpin,

source§

fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8], ) -> Poll<Result<usize, Self::Error>>

source§

fn poll_flush( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Self::Error>>

source§

impl<T: Copy> Copy for EmbeddedIOAsyncAdapter<T>

source§

impl<T: Eq> Eq for EmbeddedIOAsyncAdapter<T>

source§

impl<T: Write + Unpin> FlushCancelSafe for EmbeddedIOAsyncAdapter<T>

source§

impl<T: Read + Unpin> ReadCancelSafe for EmbeddedIOAsyncAdapter<T>

source§

impl<T> StructuralPartialEq for EmbeddedIOAsyncAdapter<T>

source§

impl<T: Write + Unpin> WriteCancelSafe for EmbeddedIOAsyncAdapter<T>

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for EmbeddedIOAsyncAdapter<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.