Struct xmpp_parsers::legacy_omemo::SignedPreKeySignature
source · pub struct SignedPreKeySignature {
pub data: <Base64 as Codec>::Decoded,
}
Expand description
SignedPreKey signature Part of a device’s bundle
Fields§
§data: <Base64 as Codec>::Decoded
Signature bytes
Trait Implementations§
source§impl Clone for SignedPreKeySignature
impl Clone for SignedPreKeySignature
source§fn clone(&self) -> SignedPreKeySignature
fn clone(&self) -> SignedPreKeySignature
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 SignedPreKeySignature
impl Debug for SignedPreKeySignature
source§impl From<SignedPreKeySignature> for Element
impl From<SignedPreKeySignature> for Element
source§fn from(elem: SignedPreKeySignature) -> Element
fn from(elem: SignedPreKeySignature) -> Element
Converts to this type from the input type.
source§impl FromXml for SignedPreKeySignature
impl FromXml for SignedPreKeySignature
§type Builder = FromEventsViaElement<SignedPreKeySignature>
type Builder = FromEventsViaElement<SignedPreKeySignature>
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 SignedPreKeySignature
impl IntoXml for SignedPreKeySignature
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type. Read more
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 SignedPreKeySignature
impl PartialEq for SignedPreKeySignature
source§fn eq(&self, other: &SignedPreKeySignature) -> bool
fn eq(&self, other: &SignedPreKeySignature) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for SignedPreKeySignature
impl TryFrom<Element> for SignedPreKeySignature
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
source§fn try_from(elem: Element) -> Result<SignedPreKeySignature, FromElementError>
fn try_from(elem: Element) -> Result<SignedPreKeySignature, FromElementError>
Performs the conversion.
impl StructuralPartialEq for SignedPreKeySignature
Auto Trait Implementations§
impl Freeze for SignedPreKeySignature
impl RefUnwindSafe for SignedPreKeySignature
impl Send for SignedPreKeySignature
impl Sync for SignedPreKeySignature
impl Unpin for SignedPreKeySignature
impl UnwindSafe for SignedPreKeySignature
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