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