pub enum MurkRecipient {
Age(Recipient),
Ssh(Recipient),
}Expand description
A recipient that can receive age-encrypted data.
Wraps either an age x25519 recipient or an SSH public key recipient.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MurkRecipient
impl Clone for MurkRecipient
Source§fn clone(&self) -> MurkRecipient
fn clone(&self) -> MurkRecipient
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MurkRecipient
impl RefUnwindSafe for MurkRecipient
impl Send for MurkRecipient
impl Sync for MurkRecipient
impl Unpin for MurkRecipient
impl UnsafeUnpin for MurkRecipient
impl UnwindSafe for MurkRecipient
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