Struct xmpp_parsers::legacy_omemo::SignedPreKeyPublic
source · pub struct SignedPreKeyPublic {
pub signed_pre_key_id: Option<u32>,
pub data: <Base64 as Codec>::Decoded,
}
Expand description
SignedPreKey public key Part of a device’s bundle
Fields§
§signed_pre_key_id: Option<u32>
SignedPreKey id
data: <Base64 as Codec>::Decoded
Serialized PublicKey
Trait Implementations§
source§impl Clone for SignedPreKeyPublic
impl Clone for SignedPreKeyPublic
source§fn clone(&self) -> SignedPreKeyPublic
fn clone(&self) -> SignedPreKeyPublic
Returns a copy 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 moresource§impl Debug for SignedPreKeyPublic
impl Debug for SignedPreKeyPublic
source§impl From<SignedPreKeyPublic> for Element
impl From<SignedPreKeyPublic> for Element
source§fn from(elem: SignedPreKeyPublic) -> Element
fn from(elem: SignedPreKeyPublic) -> Element
Converts to this type from the input type.
source§impl PartialEq for SignedPreKeyPublic
impl PartialEq for SignedPreKeyPublic
source§fn eq(&self, other: &SignedPreKeyPublic) -> bool
fn eq(&self, other: &SignedPreKeyPublic) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for SignedPreKeyPublic
impl TryFrom<Element> for SignedPreKeyPublic
impl StructuralPartialEq for SignedPreKeyPublic
Auto Trait Implementations§
impl Freeze for SignedPreKeyPublic
impl RefUnwindSafe for SignedPreKeyPublic
impl Send for SignedPreKeyPublic
impl Sync for SignedPreKeyPublic
impl Unpin for SignedPreKeyPublic
impl UnwindSafe for SignedPreKeyPublic
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