Struct std::sync::mpmc::zero::Channel

source ·
pub(crate) struct Channel<T> {
    inner: Mutex<Inner>,
    _marker: PhantomData<T>,
}
Expand description

Zero-capacity channel.

Fields§

§inner: Mutex<Inner>

Inner representation of the channel.

§_marker: PhantomData<T>

Indicates that dropping a Channel<T> may drop values of type T.

Implementations§

source§

impl<T> Channel<T>

source

pub(crate) fn new() -> Self

Constructs a new zero-capacity channel.

source

pub(crate) unsafe fn write(&self, token: &mut Token, msg: T) -> Result<(), T>

Writes a message into the packet.

source

pub(crate) unsafe fn read(&self, token: &mut Token) -> Result<T, ()>

Reads a message from the packet.

source

pub(crate) fn try_send(&self, msg: T) -> Result<(), TrySendError<T>>

Attempts to send a message into the channel.

source

pub(crate) fn send( &self, msg: T, deadline: Option<Instant> ) -> Result<(), SendTimeoutError<T>>

Sends a message into the channel.

source

pub(crate) fn try_recv(&self) -> Result<T, TryRecvError>

Attempts to receive a message without blocking.

source

pub(crate) fn recv( &self, deadline: Option<Instant> ) -> Result<T, RecvTimeoutError>

Receives a message from the channel.

source

pub(crate) fn disconnect(&self) -> bool

Disconnects the channel and wakes up all blocked senders and receivers.

Returns true if this call disconnected the channel.

source

pub(crate) fn len(&self) -> usize

Returns the current number of messages inside the channel.

source

pub(crate) fn capacity(&self) -> Option<usize>

Returns the capacity of the channel.

source

pub(crate) fn is_empty(&self) -> bool

Returns true if the channel is empty.

source

pub(crate) fn is_full(&self) -> bool

Returns true if the channel is full.

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Channel<T>where T: RefUnwindSafe,

§

impl<T> !Send for Channel<T>

§

impl<T> !Sync for Channel<T>

§

impl<T> Unpin for Channel<T>where T: Unpin,

§

impl<T> UnwindSafe for Channel<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.