pub trait IntoComponentSource {
type Source: ComponentSource;
// Required method
fn into(self) -> Self::Source;
}
Expand description
Converts a type into a ComponentSource
.
Required Associated Types§
Sourcetype Source: ComponentSource
type Source: ComponentSource
The output component source.