[−][src]Struct boolean_enums::lstd::sync::mpsc::Handle
channel selection will be removed in a future release
🔬 This is a nightly-only experimental API. (mpsc_select
)
This implementation, while likely sufficient, is unsafe and likely to be error prone. At some point in the future this module will be removed.
A handle to a receiver which is currently a member of a Select
set of
receivers. This handle is used to keep the receiver in the set as well as
interact with the underlying receiver.
Methods
impl<'rx, T> Handle<'rx, T> where
T: Send,
[src]
impl<'rx, T> Handle<'rx, T> where
T: Send,
pub fn id(&self) -> usize | [src] |
channel selection will be removed in a future release
🔬 This is a nightly-only experimental API. (mpsc_select
)
This implementation, while likely sufficient, is unsafe and likely to be error prone. At some point in the future this module will be removed.
Retrieves the id of this handle.
pub fn recv(&mut self) -> Result<T, RecvError> | [src] |
channel selection will be removed in a future release
🔬 This is a nightly-only experimental API. (mpsc_select
)
This implementation, while likely sufficient, is unsafe and likely to be error prone. At some point in the future this module will be removed.
Blocks to receive a value on the underlying receiver, returning Some
on
success or None
if the channel disconnects. This function has the same
semantics as Receiver.recv
pub unsafe fn add(&mut self) | [src] |
channel selection will be removed in a future release
🔬 This is a nightly-only experimental API. (mpsc_select
)
This implementation, while likely sufficient, is unsafe and likely to be error prone. At some point in the future this module will be removed.
Adds this handle to the receiver set that the handle was created from. This
method can be called multiple times, but it has no effect if add
was
called previously.
This method is unsafe because it requires that the Handle
is not moved
while it is added to the Select
set.
pub unsafe fn remove(&mut self) | [src] |
channel selection will be removed in a future release
🔬 This is a nightly-only experimental API. (mpsc_select
)
This implementation, while likely sufficient, is unsafe and likely to be error prone. At some point in the future this module will be removed.
Removes this handle from the Select
set. This method is unsafe because
it has no guarantee that the Handle
was not moved since add
was
called.
Trait Implementations
impl<'rx, T> Debug for Handle<'rx, T> where
T: 'rx + Send,
[src]
impl<'rx, T> Debug for Handle<'rx, T> where
T: 'rx + Send,
impl<'rx, T> Drop for Handle<'rx, T> where
T: Send,
[src]
impl<'rx, T> Drop for Handle<'rx, T> where
T: Send,
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)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> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId | [src] |
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error> | [src] |
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
ⓘImportant traits for &'a mut W
fn borrow_mut(&mut self) -> &mut T | [src] |