1
 2
 3
 4
 5
 6
 7
 8
 9
10
use super::Platform;

pub trait Container<P>
where
    P: Platform + ?Sized,
{
    fn mount(&mut self, container: &mut P::Container);

    fn unmount(&mut self);
}