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