pub enum PrincipalSetError {
TooManyPrincipals {
principals: usize,
},
}Expand description
Why a request’s principal set was rejected.
Variants§
TooManyPrincipals
More identities than one request may act as.
Trait Implementations§
Source§impl Clone for PrincipalSetError
impl Clone for PrincipalSetError
Source§impl Debug for PrincipalSetError
impl Debug for PrincipalSetError
Source§impl Display for PrincipalSetError
impl Display for PrincipalSetError
impl Eq for PrincipalSetError
Source§impl Error for PrincipalSetError
impl Error for PrincipalSetError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for PrincipalSetError
impl PartialEq for PrincipalSetError
impl StructuralPartialEq for PrincipalSetError
Auto Trait Implementations§
impl Freeze for PrincipalSetError
impl RefUnwindSafe for PrincipalSetError
impl Send for PrincipalSetError
impl Sync for PrincipalSetError
impl Unpin for PrincipalSetError
impl UnsafeUnpin for PrincipalSetError
impl UnwindSafe for PrincipalSetError
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