Struct futures_intrusive::channel::shared::GenericStateSender
source · pub struct GenericStateSender<MutexType, T>where
MutexType: RawMutex,
T: Clone + 'static,{ /* private fields */ }
Expand description
The sending side of a channel which can be used to exchange values between concurrent tasks.
Values can be sent into the channel through send
.
Implementations
sourceimpl<MutexType, T> GenericStateSender<MutexType, T>where
MutexType: RawMutex + 'static,
T: Clone,
impl<MutexType, T> GenericStateSender<MutexType, T>where
MutexType: RawMutex + 'static,
T: Clone,
sourcepub fn send(&self, value: T) -> Result<(), ChannelSendError<T>>
pub fn send(&self, value: T) -> Result<(), ChannelSendError<T>>
Writes a single value to the channel.
This will notify waiters about the availability of the value. If a value had been written to the channel before, or if the channel is closed, the new value will be rejected and returned inside the error variant.
Trait Implementations
sourceimpl<MutexType, T> Clone for GenericStateSender<MutexType, T>where
MutexType: RawMutex,
T: Clone,
impl<MutexType, T> Clone for GenericStateSender<MutexType, T>where
MutexType: RawMutex,
T: Clone,
sourceimpl<MutexType, T> Debug for GenericStateSender<MutexType, T>where
MutexType: RawMutex,
T: Clone,
impl<MutexType, T> Debug for GenericStateSender<MutexType, T>where
MutexType: RawMutex,
T: Clone,
Auto Trait Implementations
impl<MutexType, T> !RefUnwindSafe for GenericStateSender<MutexType, T>
impl<MutexType, T> Send for GenericStateSender<MutexType, T>where
MutexType: Send + Sync,
T: Send,
impl<MutexType, T> Sync for GenericStateSender<MutexType, T>where
MutexType: Send + Sync,
T: Send,
impl<MutexType, T> Unpin for GenericStateSender<MutexType, T>
impl<MutexType, T> !UnwindSafe for GenericStateSender<MutexType, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more