assets 0.3.0

asynchronous asset management
Documentation
1
2
3
4
5
6
7
8
pub trait Export {
    type Input;
    type Output: Send;
    type Error: Send;
    type Options: 'static + Send + Sync + Clone;

    fn export(&Self::Input, Self::Options) -> Result<Self::Output, Self::Error>;
}