Struct xmpp_parsers::mix::UpdateSubscription
source · pub struct UpdateSubscription {
pub jid: Option<BareJid>,
pub subscribes: Vec<Subscribe>,
}
Expand description
Update a given subscription.
Fields§
§jid: Option<BareJid>
The JID of the user to be affected.
subscribes: Vec<Subscribe>
The list of additional nodes to subscribe to.
Implementations§
source§impl UpdateSubscription
impl UpdateSubscription
sourcepub fn from_nodes(nodes: &[&str]) -> UpdateSubscription
pub fn from_nodes(nodes: &[&str]) -> UpdateSubscription
Create a new UpdateSubscription element.
Trait Implementations§
source§impl Clone for UpdateSubscription
impl Clone for UpdateSubscription
source§fn clone(&self) -> UpdateSubscription
fn clone(&self) -> UpdateSubscription
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 UpdateSubscription
impl Debug for UpdateSubscription
source§impl From<UpdateSubscription> for Element
impl From<UpdateSubscription> for Element
source§fn from(elem: UpdateSubscription) -> Element
fn from(elem: UpdateSubscription) -> Element
Converts to this type from the input type.
source§impl FromXml for UpdateSubscription
impl FromXml for UpdateSubscription
§type Builder = FromEventsViaElement<UpdateSubscription>
type Builder = FromEventsViaElement<UpdateSubscription>
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 UpdateSubscription
impl IntoXml for UpdateSubscription
§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 UpdateSubscription
impl PartialEq for UpdateSubscription
source§fn eq(&self, other: &UpdateSubscription) -> bool
fn eq(&self, other: &UpdateSubscription) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for UpdateSubscription
impl TryFrom<Element> for UpdateSubscription
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
source§fn try_from(elem: Element) -> Result<UpdateSubscription, FromElementError>
fn try_from(elem: Element) -> Result<UpdateSubscription, FromElementError>
Performs the conversion.
impl IqResultPayload for UpdateSubscription
impl IqSetPayload for UpdateSubscription
impl StructuralPartialEq for UpdateSubscription
Auto Trait Implementations§
impl Freeze for UpdateSubscription
impl RefUnwindSafe for UpdateSubscription
impl Send for UpdateSubscription
impl Sync for UpdateSubscription
impl Unpin for UpdateSubscription
impl UnwindSafe for UpdateSubscription
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)