pub enum BlobReaderRequest {
GetVmo {
blob_hash: [u8; 32],
responder: BlobReaderGetVmoResponder,
},
}
Variants§
GetVmo
Given the hash of a blob, returns a VMO with its contents.
Implementations§
Source§impl BlobReaderRequest
impl BlobReaderRequest
pub fn into_get_vmo(self) -> Option<([u8; 32], BlobReaderGetVmoResponder)>
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 BlobReaderRequest
impl !RefUnwindSafe for BlobReaderRequest
impl Send for BlobReaderRequest
impl Sync for BlobReaderRequest
impl Unpin for BlobReaderRequest
impl !UnwindSafe for BlobReaderRequest
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