pub trait Sourceable: Sized {
    fn get_id() -> ObsString;
    fn get_type() -> SourceType;
    fn create(
        create: &mut CreatableSourceContext<'_, Self>,
        source: SourceContext
    ) -> Self; }

Required Methods

Implementors