Trait assets::AssetFormat [] [src]

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

Associated Types

Required Methods

Implementors