pub struct RemoveQuery {
pub remove: bool,
}Expand description
Entity requests cancellation of existing registration.
Fields§
§remove: boolWhether to remove that registration.
Trait Implementations§
Source§impl AsXml for RemoveQuery
impl AsXml for RemoveQuery
Source§impl Clone for RemoveQuery
impl Clone for RemoveQuery
Source§fn clone(&self) -> RemoveQuery
fn clone(&self) -> RemoveQuery
Returns a duplicate 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 RemoveQuery
impl Debug for RemoveQuery
Source§impl From<&RemoveQuery> for Element
impl From<&RemoveQuery> for Element
Source§fn from(other: &RemoveQuery) -> Self
fn from(other: &RemoveQuery) -> Self
Converts to this type from the input type.
Source§impl From<RemoveQuery> for Element
impl From<RemoveQuery> for Element
Source§fn from(other: RemoveQuery) -> Self
fn from(other: RemoveQuery) -> Self
Converts to this type from the input type.
Source§impl FromXml for RemoveQuery
impl FromXml for RemoveQuery
Source§type Builder = RemoveQueryFromXmlBuilder
type Builder = RemoveQueryFromXmlBuilder
A builder type used to construct the element. Read more
Source§fn from_events(
name: QName,
attrs: AttrMap,
ctx: &Context<'_>,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: QName, attrs: AttrMap, ctx: &Context<'_>, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
Source§fn xml_name_matcher() -> XmlNameMatcher<'static>
fn xml_name_matcher() -> XmlNameMatcher<'static>
Return a predicate which determines if
Self may be parsed from
a given XML element. Read moreSource§impl TryFrom<Element> for RemoveQuery
impl TryFrom<Element> for RemoveQuery
Source§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
impl IqGetPayload for RemoveQuery
impl IqSetPayload for RemoveQuery
Auto Trait Implementations§
impl Freeze for RemoveQuery
impl RefUnwindSafe for RemoveQuery
impl Send for RemoveQuery
impl Sync for RemoveQuery
impl Unpin for RemoveQuery
impl UnwindSafe for RemoveQuery
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