Struct cycler::rw_lock_cycler::RwLockCyclerReader[][src]

pub struct RwLockCyclerReader<T> where
    T: 'static, 
{ /* fields omitted */ }

The reader for an RwLockCycler

Trait Implementations

impl<T> CyclerReader<T> for RwLockCyclerReader<T> where
    T: ReadAccess
[src]

impl<T: Debug> Debug for RwLockCyclerReader<T> where
    T: 'static, 
[src]

impl<T> EnsureSend for RwLockCyclerReader<T> where
    T: Send + Sync
[src]

impl<T> EnsureSync for RwLockCyclerReader<T> where
    T: Send + Sync
[src]

impl<T> ReadAccess for RwLockCyclerReader<T> where
    T: ReadAccess
[src]

type Read = T::Read

The type of read data that can be accessed. Will default to Self when https://github.com/rust-lang/rust/issues/29661 is resolved. Read more

Auto Trait Implementations

impl<T> !RefUnwindSafe for RwLockCyclerReader<T>

impl<T> Send for RwLockCyclerReader<T> where
    T: Send + Sync

impl<T> Sync for RwLockCyclerReader<T> where
    T: Send + Sync

impl<T> Unpin for RwLockCyclerReader<T>

impl<T> !UnwindSafe for RwLockCyclerReader<T>

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.