pub enum FtlRequest {
GetVmo {
responder: FtlGetVmoResponder,
},
Format {
responder: FtlFormatResponder,
},
}
Variants§
GetVmo
Requests the inspect vmo from the entity.
- |vmo| has |ZX_RIGHTS_DUPLICATE|, |ZX_RIGHTS_TRANSFER|, |ZX_RIGHTS_READ|
Fields
§
responder: FtlGetVmoResponder
Format
Discards previous contents and reinitializes the device.
Fields
§
responder: FtlFormatResponder
Implementations§
Source§impl FtlRequest
impl FtlRequest
pub fn into_get_vmo(self) -> Option<FtlGetVmoResponder>
pub fn into_format(self) -> Option<FtlFormatResponder>
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 FtlRequest
impl !RefUnwindSafe for FtlRequest
impl Send for FtlRequest
impl Sync for FtlRequest
impl Unpin for FtlRequest
impl !UnwindSafe for FtlRequest
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