Struct xmpp_parsers::openpgp::PubKeysMeta
source · pub struct PubKeysMeta {
pub pubkeys: Vec<PubKeyMeta>,
}
Expand description
List of public key metadata
Fields§
§pubkeys: Vec<PubKeyMeta>
Public keys
Trait Implementations§
source§impl Clone for PubKeysMeta
impl Clone for PubKeysMeta
source§fn clone(&self) -> PubKeysMeta
fn clone(&self) -> PubKeysMeta
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 PubKeysMeta
impl Debug for PubKeysMeta
source§impl From<PubKeysMeta> for Element
impl From<PubKeysMeta> for Element
source§fn from(elem: PubKeysMeta) -> Element
fn from(elem: PubKeysMeta) -> Element
Converts to this type from the input type.
source§impl FromXml for PubKeysMeta
impl FromXml for PubKeysMeta
§type Builder = FromEventsViaElement<PubKeysMeta>
type Builder = FromEventsViaElement<PubKeysMeta>
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 PubKeysMeta
impl IntoXml for PubKeysMeta
§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 PubKeysMeta
impl PartialEq for PubKeysMeta
source§fn eq(&self, other: &PubKeysMeta) -> bool
fn eq(&self, other: &PubKeysMeta) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for PubKeysMeta
impl TryFrom<Element> for PubKeysMeta
impl PubSubPayload for PubKeysMeta
impl StructuralPartialEq for PubKeysMeta
Auto Trait Implementations§
impl Freeze for PubKeysMeta
impl RefUnwindSafe for PubKeysMeta
impl Send for PubKeysMeta
impl Sync for PubKeysMeta
impl Unpin for PubKeysMeta
impl UnwindSafe for PubKeysMeta
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