Trait rsynth::meta::General[][src]

pub trait General {
    type GeneralData;
    fn general(&self) -> &Self::GeneralData;
}

Define meta-data of an application or plugin as a whole.

Associated Types

type GeneralData[src]

The data-type of the general meta-data.

Loading content...

Required methods

fn general(&self) -> &Self::GeneralData[src]

Get the general meta-data.

Loading content...

Implementors

impl<G, AP, MP> General for MetaData<G, AP, MP>[src]

type GeneralData = G

Loading content...