[][src]Struct epoxy_streams::ReadonlyReactiveValue

pub struct ReadonlyReactiveValue<T> { /* fields omitted */ }

Holds the latest value emitted by a stream.

ReactiveValues automatically unsubscribe from the stream when they are destroyed, preventing the kinds of memory leaks common in reactive programming.

Examples

use epoxy_streams::ReactiveValue;

let stream_host: epoxy_streams::Sink<i32> = epoxy_streams::Sink::new();
let stream = stream_host.get_stream();
let reactive_value = stream.map(|val| val * 100).to_reactive_value();
assert_eq!(*reactive_value.get(), 0);
stream_host.emit(1);
assert_eq!(*reactive_value.get(), 100);
stream_host.emit(3);
assert_eq!(*reactive_value.get(), 300);
use epoxy_streams::ReactiveValue;

let stream_host: epoxy_streams::Sink<i32> = epoxy_streams::Sink::new();
let stream = stream_host.get_stream();
let reactive_value = stream.map(|val| val * 100).to_reactive_value_with_default(1000);
assert_eq!(*reactive_value.get(), 1000);
stream_host.emit(100);
assert_eq!(*reactive_value.get(), 10000);

Trait Implementations

impl<T> ReactiveValue<T> for ReadonlyReactiveValue<T>[src]

impl<T> Clone for ReadonlyReactiveValue<T>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<T> !Send for ReadonlyReactiveValue<T>

impl<T> !Sync for ReadonlyReactiveValue<T>

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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 for T where
    T: ?Sized
[src]

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

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