Skip to main content

PkgDirProxyInterface

Trait PkgDirProxyInterface 

Source
pub trait PkgDirProxyInterface: Send + Sync {
    type OpenPackageDirectoryResponseFut: Future<Output = Result<PkgDirOpenPackageDirectoryResult, Error>> + Send;

    // Required method
    fn open_package_directory(
        &self,
        meta_far: &[u8; 32],
    ) -> Self::OpenPackageDirectoryResponseFut;
}

Required Associated Types§

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§