Trait cushy::value::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>