pub struct PasswordResetRequiredError;Expand description
If the identified client has previously authenticated with a password, there is no way to revoke access except by changing the user’s password. If you request revocation of such a client, the server will respond with a ‘service-unavailable’ error, with the ‘password-reset-required’ application error:
Trait Implementations§
Source§impl AsXml for PasswordResetRequiredError
impl AsXml for PasswordResetRequiredError
Source§type ItemIter<'xso_proc_as_xml_iter_lifetime> = PasswordResetRequiredErrorAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
type ItemIter<'xso_proc_as_xml_iter_lifetime> = PasswordResetRequiredErrorAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
The iterator type. Read more
Source§impl Clone for PasswordResetRequiredError
impl Clone for PasswordResetRequiredError
Source§fn clone(&self) -> PasswordResetRequiredError
fn clone(&self) -> PasswordResetRequiredError
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 PasswordResetRequiredError
impl Debug for PasswordResetRequiredError
Source§impl From<&PasswordResetRequiredError> for Element
impl From<&PasswordResetRequiredError> for Element
Source§fn from(other: &PasswordResetRequiredError) -> Self
fn from(other: &PasswordResetRequiredError) -> Self
Converts to this type from the input type.
Source§impl From<PasswordResetRequiredError> for Element
impl From<PasswordResetRequiredError> for Element
Source§fn from(other: PasswordResetRequiredError) -> Self
fn from(other: PasswordResetRequiredError) -> Self
Converts to this type from the input type.
Source§impl FromXml for PasswordResetRequiredError
impl FromXml for PasswordResetRequiredError
Source§type Builder = PasswordResetRequiredErrorFromXmlBuilder
type Builder = PasswordResetRequiredErrorFromXmlBuilder
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 PasswordResetRequiredError
impl TryFrom<Element> for PasswordResetRequiredError
Source§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
impl StructuralPartialEq for PasswordResetRequiredError
Auto Trait Implementations§
impl Freeze for PasswordResetRequiredError
impl RefUnwindSafe for PasswordResetRequiredError
impl Send for PasswordResetRequiredError
impl Sync for PasswordResetRequiredError
impl Unpin for PasswordResetRequiredError
impl UnwindSafe for PasswordResetRequiredError
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