Trait Mount

Source
pub trait Mount {
    // Required method
    fn mount_blocking(&self) -> Result<(), Error>;
}

Required Methods§

Source

fn mount_blocking(&self) -> Result<(), Error>

Mount this volume. Blocking.

Implementors§

Source§

impl Mount for Device

Source§

impl<T> Mount for T
where T: Out,