fidl_fuchsia_hardware_ramdisk

Trait ControllerProxyInterface

Source
pub trait ControllerProxyInterface: Send + Sync {
    type CreateResponseFut: Future<Output = Result<ControllerCreateResult, Error>> + Send;

    // Required method
    fn create(&self, payload: Options) -> Self::CreateResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn create(&self, payload: Options) -> Self::CreateResponseFut

Implementors§

Source§

impl ControllerProxyInterface for ControllerProxy

Source§

type CreateResponseFut = QueryResponseFut<Result<(ClientEnd<DirectoryMarker>, EventPair), i32>>