Trait assets::AssetFormat [] [src]

pub trait AssetFormat: 'static + Send + Sync {
    type Input: 'static;
    type Output: 'static;
    type Error: 'static + Error;
    type Options: 'static + Clone;
    fn format(
        _: Self::Input,
        _: Self::Options
    ) -> Result<Self::Output, Self::Error>; }

Associated Types

Required Methods

Implementors