pub enum InspectVmoProviderRequest {
GetVmo {
responder: InspectVmoProviderGetVmoResponder,
},
}
Expand description
It is treated as a separate protocol for extension if necessary.
Variants§
GetVmo
Requests the inspect vmo from the entity.
- |vmo| has |ZX_RIGHTS_DUPLICATE|, |ZX_RIGHTS_TRANSFER|, |ZX_RIGHTS_READ|
Fields
§
responder: InspectVmoProviderGetVmoResponder
Implementations§
Source§impl InspectVmoProviderRequest
impl InspectVmoProviderRequest
pub fn into_get_vmo(self) -> Option<InspectVmoProviderGetVmoResponder>
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 InspectVmoProviderRequest
impl !RefUnwindSafe for InspectVmoProviderRequest
impl Send for InspectVmoProviderRequest
impl Sync for InspectVmoProviderRequest
impl Unpin for InspectVmoProviderRequest
impl !UnwindSafe for InspectVmoProviderRequest
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