pub enum PkgDirRequest {
OpenPackageDirectory {
meta_far: [u8; 32],
responder: PkgDirOpenPackageDirectoryResponder,
},
}
Variants§
OpenPackageDirectory
Serves a package directory for the package with hash meta_far and returns a client end to the package directory.
Implementations§
Source§impl PkgDirRequest
impl PkgDirRequest
pub fn into_open_package_directory( self, ) -> Option<([u8; 32], PkgDirOpenPackageDirectoryResponder)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PkgDirRequest
impl !RefUnwindSafe for PkgDirRequest
impl Send for PkgDirRequest
impl Sync for PkgDirRequest
impl Unpin for PkgDirRequest
impl !UnwindSafe for PkgDirRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more