cushy::reactive::value

Trait IntoReader

Source
pub trait IntoReader<T> {
    // Required method
    fn into_reader(self) -> DynamicReader<T>;
}
Expand description

A type that can be converted into a DynamicReader<T>.

Required Methods§

Source

fn into_reader(self) -> DynamicReader<T>

Returns this value as a reader.

Implementors§

Source§

impl<T> IntoReader<T> for Dynamic<T>

Source§

impl<T> IntoReader<T> for DynamicReader<T>