IntoComponentSource

Trait IntoComponentSource 

Source
pub trait IntoComponentSource {
    type Source: ComponentSource;

    // Required method
    fn into(self) -> Self::Source;
}
Expand description

Converts a type into a ComponentSource.

Required Associated Types§

Source

type Source: ComponentSource

The output component source.

Required Methods§

Source

fn into(self) -> Self::Source

Converts this structure into a component source.

Implementors§