pub struct CredentialRequestReply {
pub approved: bool,
pub credential: Option<CredentialData>,
pub credential_id: Option<String>,
}Expand description
Reply for credential requests.
Fields§
§approved: boolWhether approved
credential: Option<CredentialData>The credential to send (if approved)
credential_id: Option<String>Vault item ID (for audit logging)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CredentialRequestReply
impl RefUnwindSafe for CredentialRequestReply
impl Send for CredentialRequestReply
impl Sync for CredentialRequestReply
impl Unpin for CredentialRequestReply
impl UnsafeUnpin for CredentialRequestReply
impl UnwindSafe for CredentialRequestReply
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