Struct tokio::sync::oneshot::Inner

source ·
struct Inner<T> {
    state: AtomicUsize,
    value: UnsafeCell<Option<T>>,
    tx_task: Task,
    rx_task: Task,
}

Fields§

§state: AtomicUsize

Manages the state of the inner cell.

§value: UnsafeCell<Option<T>>

The value. This is set by Sender and read by Receiver. The state of the cell is tracked by state.

§tx_task: Task

The task to notify when the receiver drops without consuming the value.

Safety

The TX_TASK_SET bit in the state field is set if this field is initialized. If that bit is unset, this field may be uninitialized.

§rx_task: Task

The task to notify when the value is sent.

Safety

The RX_TASK_SET bit in the state field is set if this field is initialized. If that bit is unset, this field may be uninitialized.

Implementations§

source§

impl<T> Inner<T>

source

fn complete(&self) -> bool

source

fn poll_recv(&self, cx: &mut Context<'_>) -> Poll<Result<T, RecvError>>

source

fn close(&self)

Called by Receiver to indicate that the value will never be received.

source

unsafe fn consume_value(&self) -> Option<T>

Consumes the value. This function does not check state.

Safety

Calling this method concurrently on multiple threads will result in a data race. The VALUE_SENT state bit is used to ensure that only the sender or the receiver will call this method at a given point in time. If VALUE_SENT is not set, then only the sender may call this method; if it is set, then only the receiver may call this method.

Trait Implementations§

source§

impl<T: Debug> Debug for Inner<T>

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Drop for Inner<T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T: Send> Send for Inner<T>

source§

impl<T: Send> Sync for Inner<T>

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for Inner<T>

§

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

§

impl<T> UnwindSafe for Inner<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.