Struct cycler::atomic_cycler::AtomicCyclerReader[][src]

pub struct AtomicCyclerReader<T> { /* fields omitted */ }

The reader for an RwLockCycler

Trait Implementations

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

impl<T: Debug> Debug for AtomicCyclerReader<T>[src]

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

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

impl<T> ReadAccess for AtomicCyclerReader<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 AtomicCyclerReader<T>

impl<T> Send for AtomicCyclerReader<T> where
    T: Send

impl<T> Sync for AtomicCyclerReader<T> where
    T: Send

impl<T> Unpin for AtomicCyclerReader<T>

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