Struct actix_utils::mpsc::Sender [−][src]
The transmission end of a channel.
This is created by the channel function.
Implementations
impl<T> Sender<T>[src]
pub fn send(&self, item: T) -> Result<(), SendError<T>>[src]
Sends the provided message along this channel.
pub fn close(&mut self)[src]
Closes the sender half
This prevents any further messages from being sent on the channel while still enabling the receiver to drain messages that are buffered.
Trait Implementations
impl<T> Clone for Sender<T>[src]
fn clone(&self) -> Self[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<T: Debug> Debug for Sender<T>[src]
impl<T> Drop for Sender<T>[src]
impl<T> Sink<T> for Sender<T>[src]
type Error = SendError<T>
The type of value produced by the sink when an error occurs.
fn poll_ready(
self: Pin<&mut Self>,
_: &mut Context<'_>
) -> Poll<Result<(), Self::Error>>[src]
self: Pin<&mut Self>,
_: &mut Context<'_>
) -> Poll<Result<(), Self::Error>>
fn start_send(self: Pin<&mut Self>, item: T) -> Result<(), SendError<T>>[src]
fn poll_flush(
self: Pin<&mut Self>,
_: &mut Context<'_>
) -> Poll<Result<(), SendError<T>>>[src]
self: Pin<&mut Self>,
_: &mut Context<'_>
) -> Poll<Result<(), SendError<T>>>
fn poll_close(
self: Pin<&mut Self>,
_: &mut Context<'_>
) -> Poll<Result<(), Self::Error>>[src]
self: Pin<&mut Self>,
_: &mut Context<'_>
) -> Poll<Result<(), Self::Error>>
impl<T> Unpin for Sender<T>[src]
Auto Trait Implementations
impl<T> !RefUnwindSafe for Sender<T>[src]
impl<T> !Send for Sender<T>[src]
impl<T> !Sync for Sender<T>[src]
impl<T> !UnwindSafe for Sender<T>[src]
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,
pub 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.
pub fn to_owned(&self) -> T[src]
pub 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.
pub 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>,