pub enum EntityId {
Show 18 variants
SignatureKeyPair(Vec<u8>),
HpkePrivateKey(Vec<u8>),
KeyPackage(Vec<u8>),
PskBundle(Vec<u8>),
EncryptionKeyPair(Vec<u8>),
EpochEncryptionKeyPair(Vec<u8>),
MlsCredential(Vec<u8>),
PersistedMlsGroup(Vec<u8>),
PersistedMlsPendingGroup(Vec<u8>),
MlsPendingMessage(Vec<u8>),
E2eiEnrollment(Vec<u8>),
E2eiRefreshToken(Vec<u8>),
E2eiAcmeCA(Vec<u8>),
E2eiIntermediateCert(Vec<u8>),
E2eiCrl(Vec<u8>),
ProteusIdentity(Vec<u8>),
ProteusPrekey(Vec<u8>),
ProteusSession(Vec<u8>),
}
Variants§
SignatureKeyPair(Vec<u8>)
HpkePrivateKey(Vec<u8>)
KeyPackage(Vec<u8>)
PskBundle(Vec<u8>)
EncryptionKeyPair(Vec<u8>)
EpochEncryptionKeyPair(Vec<u8>)
MlsCredential(Vec<u8>)
PersistedMlsGroup(Vec<u8>)
PersistedMlsPendingGroup(Vec<u8>)
MlsPendingMessage(Vec<u8>)
E2eiEnrollment(Vec<u8>)
E2eiRefreshToken(Vec<u8>)
E2eiAcmeCA(Vec<u8>)
E2eiIntermediateCert(Vec<u8>)
E2eiCrl(Vec<u8>)
ProteusIdentity(Vec<u8>)
ProteusPrekey(Vec<u8>)
ProteusSession(Vec<u8>)
Trait Implementations§
impl StructuralPartialEq for EntityId
Auto Trait Implementations§
impl Freeze for EntityId
impl RefUnwindSafe for EntityId
impl Send for EntityId
impl Sync for EntityId
impl Unpin for EntityId
impl UnwindSafe for EntityId
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more