pub enum KeyRequest {
GetKeyOrigin {
responder: KeyGetKeyOriginResponder,
},
GetKeyProvider {
responder: KeyGetKeyProviderResponder,
},
}
Variants§
GetKeyOrigin
Get the key origin (generated/imported).
Fields
§
responder: KeyGetKeyOriginResponder
GetKeyProvider
Get the name for the crypto provider backing up the key.
Fields
§
responder: KeyGetKeyProviderResponder
Implementations§
Source§impl KeyRequest
impl KeyRequest
pub fn into_get_key_origin(self) -> Option<KeyGetKeyOriginResponder>
pub fn into_get_key_provider(self) -> Option<KeyGetKeyProviderResponder>
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 KeyRequest
impl !RefUnwindSafe for KeyRequest
impl Send for KeyRequest
impl Sync for KeyRequest
impl Unpin for KeyRequest
impl !UnwindSafe for KeyRequest
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