pub trait UnmountAsync {
    // Required method
    fn unmount(&self) -> impl Future<Output = Result<(), Error>>;
}

Required Methods§

source

fn unmount(&self) -> impl Future<Output = Result<(), Error>>

Unmount this volume.

Object Safety§

This trait is not object safe.

Implementors§