[][src]Struct drone_core::fib::FiberStreamPulse

#[must_use = "streams do nothing unless you `.await` or poll them"]
pub struct FiberStreamPulse { /* fields omitted */ }

A stream of pulses from the fiber in another thread.

Dropping or closing this future will remove the fiber on a next thread invocation without resuming it.

Methods

impl FiberStreamPulse[src]

pub fn close(&mut self)[src]

Gracefully close this future.

The fiber will be removed on a next thread invocation without resuming.

Trait Implementations

impl Stream for FiberStreamPulse[src]

type Item = NonZeroUsize

Values yielded by the stream.

Auto Trait Implementations

impl Unpin for FiberStreamPulse

impl Send for FiberStreamPulse

impl Sync for FiberStreamPulse

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> StreamExt for T where
    T: Stream + ?Sized
[src]