Enum xmpp_parsers::ns::StanzaNamespace
source · pub enum StanzaNamespace {
Client,
ComponentAccept,
}
Expand description
Enumeration for possible stanza namespaces
Variants§
Client
Represents JABBER_CLIENT
.
If built without feature = "component"
, this is the default.
ComponentAccept
Represents COMPONENT_ACCEPT
.
If built with feature = "component"
, this is the default.
Trait Implementations§
source§impl Clone for StanzaNamespace
impl Clone for StanzaNamespace
source§fn clone(&self) -> StanzaNamespace
fn clone(&self) -> StanzaNamespace
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 StanzaNamespace
impl Debug for StanzaNamespace
source§impl Default for StanzaNamespace
impl Default for StanzaNamespace
source§fn default() -> StanzaNamespace
fn default() -> StanzaNamespace
Returns the “default value” for a type. Read more
source§impl DynNamespaceEnum for StanzaNamespace
impl DynNamespaceEnum for StanzaNamespace
source§fn from_xml_text(s: &str) -> Result<Self, DynNamespaceError>
fn from_xml_text(s: &str) -> Result<Self, DynNamespaceError>
Parse the namespace from the
xmlns
attribute data. Read moresource§fn into_xml_text(self) -> String
fn into_xml_text(self) -> String
Convert the namespace into the text value of an
xmlns
attribute.source§impl PartialEq<str> for StanzaNamespace
impl PartialEq<str> for StanzaNamespace
source§impl PartialEq for StanzaNamespace
impl PartialEq for StanzaNamespace
source§fn eq(&self, other: &StanzaNamespace) -> bool
fn eq(&self, other: &StanzaNamespace) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StanzaNamespace
Auto Trait Implementations§
impl Freeze for StanzaNamespace
impl RefUnwindSafe for StanzaNamespace
impl Send for StanzaNamespace
impl Sync for StanzaNamespace
impl Unpin for StanzaNamespace
impl UnwindSafe for StanzaNamespace
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