Enum xmpp_parsers::extdisco::Restricted
source · pub enum Restricted {
True,
False,
}
Expand description
Username and password credentials are required and will need to be requested if not already provided.
Variants§
True
True value, represented by either ‘true’ or ‘1’.
False
False value, represented by either ‘false’ or ‘0’.
Trait Implementations§
source§impl Clone for Restricted
impl Clone for Restricted
source§fn clone(&self) -> Restricted
fn clone(&self) -> Restricted
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 Restricted
impl Debug for Restricted
source§impl Default for Restricted
impl Default for Restricted
source§fn default() -> Restricted
fn default() -> Restricted
Returns the “default value” for a type. Read more
source§impl FromStr for Restricted
impl FromStr for Restricted
source§impl IntoAttributeValue for Restricted
impl IntoAttributeValue for Restricted
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
Turns this into an attribute string, or None if it shouldn’t be added.
source§impl PartialEq for Restricted
impl PartialEq for Restricted
source§fn eq(&self, other: &Restricted) -> bool
fn eq(&self, other: &Restricted) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Restricted
Auto Trait Implementations§
impl Freeze for Restricted
impl RefUnwindSafe for Restricted
impl Send for Restricted
impl Sync for Restricted
impl Unpin for Restricted
impl UnwindSafe for Restricted
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