pub enum ConnectionError {
ConnectionFailed {
host: String,
port: u16,
message: String,
},
AuthenticationFailed(String),
InvalidParameter {
parameter: String,
message: String,
},
ParseError(String),
Timeout {
timeout_ms: u64,
},
ConnectionClosed,
TlsError(String),
}Expand description
Errors related to database connections.
Variants§
ConnectionFailed
Failed to establish connection to the database
AuthenticationFailed(String)
Authentication failure
InvalidParameter
Invalid connection parameters
ParseError(String)
Connection string parsing error
Timeout
Connection timeout
ConnectionClosed
Connection is closed
TlsError(String)
TLS/SSL error
Implementations§
Source§impl ConnectionError
impl ConnectionError
Sourcepub fn to_adbc_code(&self) -> AdbcErrorCode
pub fn to_adbc_code(&self) -> AdbcErrorCode
Map to ADBC error code.
Trait Implementations§
Source§impl Debug for ConnectionError
impl Debug for ConnectionError
Source§impl Display for ConnectionError
impl Display for ConnectionError
Source§impl Error for ConnectionError
impl Error for ConnectionError
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 From<ConnectionError> for ExasolError
impl From<ConnectionError> for ExasolError
Source§fn from(source: ConnectionError) -> Self
fn from(source: ConnectionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConnectionError
impl RefUnwindSafe for ConnectionError
impl Send for ConnectionError
impl Sync for ConnectionError
impl Unpin for ConnectionError
impl UnwindSafe for ConnectionError
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