Struct xmpp_parsers::pubsub::pubsub::Unsubscribe
source · pub struct Unsubscribe {
pub jid: Jid,
pub node: Option<NodeName>,
pub subid: Option<SubscriptionId>,
}
Expand description
An unsubscribe request.
Fields§
§jid: Jid
The JID affected by this request.
node: Option<NodeName>
The node affected by this request.
subid: Option<SubscriptionId>
The subscription identifier for this subscription.
Trait Implementations§
source§impl Clone for Unsubscribe
impl Clone for Unsubscribe
source§fn clone(&self) -> Unsubscribe
fn clone(&self) -> Unsubscribe
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 Unsubscribe
impl Debug for Unsubscribe
source§impl From<Unsubscribe> for Element
impl From<Unsubscribe> for Element
source§fn from(elem: Unsubscribe) -> Element
fn from(elem: Unsubscribe) -> Element
Converts to this type from the input type.
source§impl FromXml for Unsubscribe
impl FromXml for Unsubscribe
§type Builder = FromEventsViaElement<Unsubscribe>
type Builder = FromEventsViaElement<Unsubscribe>
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 Unsubscribe
impl IntoXml for Unsubscribe
§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 Unsubscribe
impl PartialEq for Unsubscribe
source§fn eq(&self, other: &Unsubscribe) -> bool
fn eq(&self, other: &Unsubscribe) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for Unsubscribe
impl TryFrom<Element> for Unsubscribe
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
source§fn try_from(elem: Element) -> Result<Unsubscribe, FromElementError>
fn try_from(elem: Element) -> Result<Unsubscribe, FromElementError>
Performs the conversion.
impl StructuralPartialEq for Unsubscribe
Auto Trait Implementations§
impl Freeze for Unsubscribe
impl RefUnwindSafe for Unsubscribe
impl Send for Unsubscribe
impl Sync for Unsubscribe
impl Unpin for Unsubscribe
impl UnwindSafe for Unsubscribe
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
)