pub enum ConnectionConfigError {
AlreadyExistsError,
ConfigStorageError(StorageError),
ConfigSerdeError(String),
SecretsError(String),
}Variants§
Trait Implementations§
Source§impl Debug for ConnectionConfigError
impl Debug for ConnectionConfigError
Source§impl<'de> Deserialize<'de> for ConnectionConfigError
impl<'de> Deserialize<'de> for ConnectionConfigError
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
Source§impl From<CompareAndSwapError> for ConnectionConfigError
impl From<CompareAndSwapError> for ConnectionConfigError
Source§fn from(_: CompareAndSwapError) -> Self
fn from(_: CompareAndSwapError) -> Self
Converts to this type from the input type.
Source§impl From<ConnectionConfigError> for QueryError
impl From<ConnectionConfigError> for QueryError
Source§fn from(err: ConnectionConfigError) -> Self
fn from(err: ConnectionConfigError) -> Self
Converts to this type from the input type.
Source§impl From<SecretsError> for ConnectionConfigError
impl From<SecretsError> for ConnectionConfigError
Source§fn from(err: SecretsError) -> Self
fn from(err: SecretsError) -> Self
Converts to this type from the input type.
Source§impl From<StorageError> for ConnectionConfigError
impl From<StorageError> for ConnectionConfigError
Source§fn from(err: StorageError) -> Self
fn from(err: StorageError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConnectionConfigError
impl RefUnwindSafe for ConnectionConfigError
impl Send for ConnectionConfigError
impl Sync for ConnectionConfigError
impl Unpin for ConnectionConfigError
impl UnwindSafe for ConnectionConfigError
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