pub enum PrepareAutomationError {
ControllerAlreadyExists,
InvalidController(String),
TooManyControllers(String),
InvalidObservatoryId(String),
GetOrFetchJwks(GetOrRefreshJwksError),
GetCachedJwks,
JwtFindProvider(JwtFindProviderError),
JwtVerify(JwtVerifyError),
}Variants§
ControllerAlreadyExists
InvalidController(String)
TooManyControllers(String)
InvalidObservatoryId(String)
GetOrFetchJwks(GetOrRefreshJwksError)
GetCachedJwks
JwtFindProvider(JwtFindProviderError)
JwtVerify(JwtVerifyError)
Trait Implementations§
Source§impl CandidType for PrepareAutomationError
impl CandidType for PrepareAutomationError
Source§impl Debug for PrepareAutomationError
impl Debug for PrepareAutomationError
Source§impl<'de> Deserialize<'de> for PrepareAutomationError
impl<'de> Deserialize<'de> for PrepareAutomationError
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 PrepareAutomationError
impl RefUnwindSafe for PrepareAutomationError
impl Send for PrepareAutomationError
impl Sync for PrepareAutomationError
impl Unpin for PrepareAutomationError
impl UnsafeUnpin for PrepareAutomationError
impl UnwindSafe for PrepareAutomationError
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