[−][src]Struct futures_channel::mpsc::UnboundedSender
The transmission end of an unbounded mpsc channel.
This value is created by the unbounded
function.
Methods
impl<T> UnboundedSender<T>
[src][−]
pub fn poll_ready(&self, _: &mut Context) -> Poll<Result<(), SendError>>
[src][+]
pub fn is_closed(&self) -> bool
[src][+]
pub fn close_channel(&self)
[src][+]
pub fn disconnect(&mut self)
[src][+]
pub fn start_send(&mut self, msg: T) -> Result<(), SendError>
[src][+]
pub fn unbounded_send(&self, msg: T) -> Result<(), TrySendError<T>>
[src][+]
Trait Implementations
impl<T> Clone for UnboundedSender<T>
[src][+]
impl<T: Debug> Debug for UnboundedSender<T>
[src][+]
Auto Trait Implementations
impl<T> Send for UnboundedSender<T> where
T: Send,
T: Send,
impl<T> Sync for UnboundedSender<T> where
T: Send,
T: Send,
Blanket Implementations
impl<T> From for T
[src][+]
impl<T, U> Into for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T> Borrow for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,