pub enum MetadataRequest {
GetPersistedMetadata {
responder: MetadataGetPersistedMetadataResponder,
},
}Variants§
GetPersistedMetadata
Retrieve the persisted metadata provided by the server. Returns ZX_ERR_NOT_FOUND if the server does not have metadata to provide.
Fields
§
responder: MetadataGetPersistedMetadataResponderImplementations§
Source§impl MetadataRequest
impl MetadataRequest
pub fn into_get_persisted_metadata( self, ) -> Option<MetadataGetPersistedMetadataResponder>
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 MetadataRequest
impl !RefUnwindSafe for MetadataRequest
impl Send for MetadataRequest
impl Sync for MetadataRequest
impl Unpin for MetadataRequest
impl UnsafeUnpin for MetadataRequest
impl !UnwindSafe for MetadataRequest
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