Struct unsafe_io::ReadHalf[][src]

pub struct ReadHalf<'a, RW: AsUnsafeReadWriteHandle>(pub &'a RW);

Adapt an AsUnsafeReadWriteHandle implementation to implement AsUnsafeHandle with the read handle.

Trait Implementations

impl<RW: AsUnsafeReadWriteHandle> AsUnsafeHandle for ReadHalf<'_, RW>[src]

impl<'a, RW: Debug + AsUnsafeReadWriteHandle> Debug for ReadHalf<'a, RW>[src]

Auto Trait Implementations

impl<'a, RW> RefUnwindSafe for ReadHalf<'a, RW> where
    RW: RefUnwindSafe

impl<'a, RW> Send for ReadHalf<'a, RW> where
    RW: Sync

impl<'a, RW> Sync for ReadHalf<'a, RW> where
    RW: Sync

impl<'a, RW> Unpin for ReadHalf<'a, RW>

impl<'a, RW> UnwindSafe for ReadHalf<'a, RW> where
    RW: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.