pub enum GroupSecretOutput {
None,
Secret(GroupSecret),
Bundle(SecretBundleState),
}Available on crate features
data_scheme only.Expand description
Secret encryption keys we’ve learned about after processing a member’s control message.
Variants§
Trait Implementations§
Source§impl Debug for GroupSecretOutput
impl Debug for GroupSecretOutput
impl Eq for GroupSecretOutput
Source§impl PartialEq for GroupSecretOutput
impl PartialEq for GroupSecretOutput
Source§fn eq(&self, other: &GroupSecretOutput) -> bool
fn eq(&self, other: &GroupSecretOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GroupSecretOutput
Auto Trait Implementations§
impl Freeze for GroupSecretOutput
impl RefUnwindSafe for GroupSecretOutput
impl Send for GroupSecretOutput
impl Sync for GroupSecretOutput
impl Unpin for GroupSecretOutput
impl UnsafeUnpin for GroupSecretOutput
impl UnwindSafe for GroupSecretOutput
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