fidl_fuchsia_starnix_binder

Trait BinderProxyInterface

Source
pub trait BinderProxyInterface: Send + Sync {
    type IoctlResponseFut: Future<Output = Result<BinderIoctlResult, Error>> + Send;

    // Required methods
    fn set_vmo(&self, vmo: Vmo, mapped_address: u64) -> Result<(), Error>;
    fn ioctl(
        &self,
        tid: u64,
        request: u32,
        parameter: u64,
    ) -> Self::IoctlResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn set_vmo(&self, vmo: Vmo, mapped_address: u64) -> Result<(), Error>

Source

fn ioctl( &self, tid: u64, request: u32, parameter: u64, ) -> Self::IoctlResponseFut

Implementors§