assets 0.3.0

asynchronous asset management
Documentation
1
2
3
4
5
6
use super::{Export, Import};

pub trait Asset:
    'static + Sized + Sync + Send + Export<Input = Self> + Import<Output = Self>
{
}