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 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
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