[−][src]Struct futures_intrusive::channel::shared::GenericStateSender
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
.
Methods
impl<MutexType, T> GenericStateSender<MutexType, T> where
MutexType: RawMutex + 'static,
T: Clone,
[src]
MutexType: RawMutex + 'static,
T: Clone,
pub fn send(&self, value: T) -> Result<(), ChannelSendError<T>>
[src]
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
impl<MutexType, T> Clone for GenericStateSender<MutexType, T> where
MutexType: RawMutex,
T: Clone,
[src]
MutexType: RawMutex,
T: Clone,
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<MutexType, T> Debug for GenericStateSender<MutexType, T> where
MutexType: RawMutex,
T: Clone,
[src]
MutexType: RawMutex,
T: Clone,
impl<MutexType, T> Drop for GenericStateSender<MutexType, T> where
MutexType: RawMutex,
T: Clone,
[src]
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,
MutexType: Send + Sync,
T: Send,
impl<MutexType, T> Sync for GenericStateSender<MutexType, T> where
MutexType: Send + Sync,
T: Send,
MutexType: Send + Sync,
T: Send,
impl<MutexType, T> Unpin for GenericStateSender<MutexType, T>
impl<MutexType, T> !UnwindSafe for GenericStateSender<MutexType, T>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,