Struct zenoh::GetRequestStream[][src]

pub struct GetRequestStream<'a> { /* fields omitted */ }

A Stream of GetRequest returned as a result of the Workspace::register_eval() operation.

Implementations

impl GetRequestStream<'_>[src]

pub async fn close(self) -> ZResult<()>[src]

Closes the stream and unregister the evaluation function.

Trait Implementations

impl Stream for GetRequestStream<'_>[src]

type Item = GetRequest

Values yielded by the stream.

impl<'__pin, 'a> Unpin for GetRequestStream<'a> where
    __Origin<'__pin, 'a>: Unpin
[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for GetRequestStream<'a>

impl<'a> Send for GetRequestStream<'a>

impl<'a> Sync for GetRequestStream<'a>

impl<'a> !UnwindSafe for GetRequestStream<'a>

Blanket Implementations

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

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

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

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

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

impl<I> IntoStream for I where
    I: Stream, 
[src]

type Item = <I as Stream>::Item

The type of the elements being iterated over.

type IntoStream = I

Which kind of stream are we turning this into?

impl<T> Same<T> for T

type Output = T

Should always be Self

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

impl<S> StreamExt for S where
    S: Stream + ?Sized

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

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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,