pub enum GetDelegationError {
InvalidObservatoryId(String),
NoSuchDelegation,
DeriveSeedFailed(String),
GetOrFetchJwks(GetOrRefreshJwksError),
GetCachedJwks,
JwtFindProvider(JwtFindProviderError),
JwtVerify(JwtVerifyError),
}Variants§
InvalidObservatoryId(String)
NoSuchDelegation
DeriveSeedFailed(String)
GetOrFetchJwks(GetOrRefreshJwksError)
GetCachedJwks
JwtFindProvider(JwtFindProviderError)
JwtVerify(JwtVerifyError)
Trait Implementations§
Source§impl CandidType for GetDelegationError
impl CandidType for GetDelegationError
Source§impl Debug for GetDelegationError
impl Debug for GetDelegationError
Source§impl<'de> Deserialize<'de> for GetDelegationError
impl<'de> Deserialize<'de> for GetDelegationError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetDelegationError
impl RefUnwindSafe for GetDelegationError
impl Send for GetDelegationError
impl Sync for GetDelegationError
impl Unpin for GetDelegationError
impl UnsafeUnpin for GetDelegationError
impl UnwindSafe for GetDelegationError
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