pub enum FactoryItemsRequest {
Get {
extra: u32,
responder: FactoryItemsGetResponder,
},
}
Expand description
Protocol for retrieving factory boot item payloads.
Variants§
Get
Gets a payload
for a ZBI_TYPE_STORAGE_BOOTFS_FACTORY
boot item with
extra field set to extra
.
NOTE: We return the length
of the item, as VMOs must be page-aligned.
Implementations§
Source§impl FactoryItemsRequest
impl FactoryItemsRequest
pub fn into_get(self) -> Option<(u32, FactoryItemsGetResponder)>
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 FactoryItemsRequest
impl !RefUnwindSafe for FactoryItemsRequest
impl Send for FactoryItemsRequest
impl Sync for FactoryItemsRequest
impl Unpin for FactoryItemsRequest
impl !UnwindSafe for FactoryItemsRequest
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