pub enum Status {
Unrestricted,
Normal,
Restricted,
}Expand description
Details of the client’s level of access to the user’s account.
Variants§
Unrestricted
The client has full unlimited access to the account.
Normal
The client has general access to the account, but some security-relevant features may be restricted (such as managing account access and changing the account password).
Restricted
the client has additional restrictions in place. In such a case the details of these
restrictions SHOULD be included in an appropriate format (and namespace) within the
<permission/> element.
Trait Implementations§
Source§impl AsXmlText for Status
impl AsXmlText for Status
Source§impl FromXmlText for Status
impl FromXmlText for Status
Source§impl IntoAttributeValue for Status
impl IntoAttributeValue for Status
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.
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
Blanket Implementations§
Source§impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
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§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more