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§
Sourcefn into_reader(self) -> DynamicReader<T>
fn into_reader(self) -> DynamicReader<T>
Returns this value as a reader.