Struct flo_binding::RopeStream[][src]

pub struct RopeStream<Cell, Attribute> where
    Cell: 'static + Send + Unpin + Clone + PartialEq,
    Attribute: 'static + Send + Sync + Clone + Unpin + PartialEq + Default
{ /* fields omitted */ }

A rope stream monitors a rope binding, and supplies them as a stream so they can be mirrored elsewhere

An example of a use for a rope stream is to send updates from a rope to a user interface.

Trait Implementations

impl<Cell, Attribute> Drop for RopeStream<Cell, Attribute> where
    Cell: 'static + Send + Unpin + Clone + PartialEq,
    Attribute: 'static + Send + Sync + Clone + Unpin + PartialEq + Default
[src]

impl<Cell, Attribute> Stream for RopeStream<Cell, Attribute> where
    Cell: 'static + Send + Unpin + Clone + PartialEq,
    Attribute: 'static + Send + Sync + Clone + Unpin + PartialEq + Default
[src]

type Item = RopeAction<Cell, Attribute>

Values yielded by the stream.

Auto Trait Implementations

impl<Cell, Attribute> !RefUnwindSafe for RopeStream<Cell, Attribute>[src]

impl<Cell, Attribute> Send for RopeStream<Cell, Attribute>[src]

impl<Cell, Attribute> !Sync for RopeStream<Cell, Attribute>[src]

impl<Cell, Attribute> Unpin for RopeStream<Cell, Attribute>[src]

impl<Cell, Attribute> !UnwindSafe for RopeStream<Cell, Attribute>[src]

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<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.