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 FromXml for SignedPreKeyPublic
impl FromXml for SignedPreKeyPublic
§type Builder = FromEventsViaElement<SignedPreKeyPublic>
type Builder = FromEventsViaElement<SignedPreKeyPublic>
A builder type used to construct the element. Read more
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 SignedPreKeyPublic
impl IntoXml for SignedPreKeyPublic
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
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 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