Struct cycler::rw_lock_cycler::RwLockCyclerWriter[][src]

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

The writer to an RwLockCycler

Trait Implementations

impl<T> CyclerWriter<T> for RwLockCyclerWriter<T> where
    T: WriteAccess
[src]

impl<T> CyclerWriterDefault<T> for RwLockCyclerWriter<T> where
    T: Clone + WriteAccess
[src]

impl<T> CyclerWriterFn<T> for RwLockCyclerWriter<T> where
    T: WriteAccess
[src]

impl<T> CyclerWriterMutFn<T> for RwLockCyclerWriter<T> where
    T: WriteAccess
[src]

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

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

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

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

fn read_data(&self) -> &Self::Read[src]

Gets a shared reference to the read data of the current block

impl<T> WriteAccess for RwLockCyclerWriter<T> where
    T: WriteAccess
[src]

type Write = T::Write

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

fn write_data(&self) -> &Self::Write[src]

Gets a shared reference to the write data of the current block

fn write_data_mut(&mut self) -> &mut Self::Write[src]

Gets an exclusive reference to the write data of the current block

Auto Trait Implementations

impl<T> !RefUnwindSafe for RwLockCyclerWriter<T>

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

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

impl<T> Unpin for RwLockCyclerWriter<T>

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