Struct xmpp_parsers::legacy_omemo::DeviceList
source · pub struct DeviceList {
pub devices: Vec<Device>,
}
Expand description
A user’s device list contains the OMEMO device ids of all the user’s devicse. These can be used to look up bundles and build a session.
Fields§
§devices: Vec<Device>
List of devices
Trait Implementations§
source§impl Clone for DeviceList
impl Clone for DeviceList
source§fn clone(&self) -> DeviceList
fn clone(&self) -> DeviceList
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 DeviceList
impl Debug for DeviceList
source§impl From<DeviceList> for Element
impl From<DeviceList> for Element
source§fn from(elem: DeviceList) -> Element
fn from(elem: DeviceList) -> Element
Converts to this type from the input type.
source§impl FromXml for DeviceList
impl FromXml for DeviceList
§type Builder = FromEventsViaElement<DeviceList>
type Builder = FromEventsViaElement<DeviceList>
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 DeviceList
impl IntoXml for DeviceList
§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 DeviceList
impl PartialEq for DeviceList
source§fn eq(&self, other: &DeviceList) -> bool
fn eq(&self, other: &DeviceList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for DeviceList
impl TryFrom<Element> for DeviceList
impl PubSubPayload for DeviceList
impl StructuralPartialEq for DeviceList
Auto Trait Implementations§
impl Freeze for DeviceList
impl RefUnwindSafe for DeviceList
impl Send for DeviceList
impl Sync for DeviceList
impl Unpin for DeviceList
impl UnwindSafe for DeviceList
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