pub enum MakeClaimError {
CredentialMissingFor(Box<ClaimBody>),
NoSetWriteAccess(GetWriteAccessError),
ApplyDiffError(ApplyDiffError),
SetNotPresent,
AddClaimError(AddClaimError),
}Variants§
CredentialMissingFor(Box<ClaimBody>)
NoSetWriteAccess(GetWriteAccessError)
ApplyDiffError(ApplyDiffError)
SetNotPresent
AddClaimError(AddClaimError)
Trait Implementations§
Source§impl Debug for MakeClaimError
impl Debug for MakeClaimError
Source§impl Display for MakeClaimError
impl Display for MakeClaimError
Source§impl Error for MakeClaimError
impl Error for MakeClaimError
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 From<ApplyDiffErrorFor<ObjectError>> for MakeClaimError
impl From<ApplyDiffErrorFor<ObjectError>> for MakeClaimError
Source§fn from(source: ApplyDiffError) -> Self
fn from(source: ApplyDiffError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MakeClaimError
impl !RefUnwindSafe for MakeClaimError
impl Send for MakeClaimError
impl Sync for MakeClaimError
impl Unpin for MakeClaimError
impl !UnwindSafe for MakeClaimError
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