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 FromXml for PreKeyPublic
impl FromXml for PreKeyPublic
§type Builder = FromEventsViaElement<PreKeyPublic>
type Builder = FromEventsViaElement<PreKeyPublic>
A builder type used to construct the element.
source§fn from_events(
qname: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( qname: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl IntoXml for PreKeyPublic
impl IntoXml for PreKeyPublic
§type EventIter = IntoEventsViaElement<PreKeyPublic>
type EventIter = IntoEventsViaElement<PreKeyPublic>
The iterator type.
source§fn into_event_iter(self) -> Result<Self::EventIter, Error>
fn into_event_iter(self) -> Result<Self::EventIter, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable
rxml::Event
items.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