pub trait Server_ProxyInterface: Send + Sync {
type MountVmoResponseFut: Future<Output = Result<MountVmoResult, Error>> + Send;
// Required method
fn mount_vmo(
&self,
source: Vmo,
root: ServerEnd<DirectoryMarker>,
) -> Self::MountVmoResponseFut;
}