pub trait IntoSource {
    type Source: Source;

    fn into_source(self) -> Self::Source;
}
Expand description

A type that can be converted into a source.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors