pub struct Recipient {
pub certificate: Vec<u8>,
pub permissions: Permissions,
pub encrypted_seed: Vec<u8>,
}Expand description
Recipient information for public key encryption
Fields§
§certificate: Vec<u8>Certificate (X.509 DER encoded)
permissions: PermissionsPermissions granted to this recipient
encrypted_seed: Vec<u8>Encrypted seed value for this recipient
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Recipient
impl RefUnwindSafe for Recipient
impl Send for Recipient
impl Sync for Recipient
impl Unpin for Recipient
impl UnwindSafe for Recipient
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