[−][src]Enum diesel::result::ConnectionError
Errors which can occur during Connection::establish
Variants
InvalidCString(NulError)
The connection URL contained a NUL
byte.
BadConnection(String)
The database returned an error.
InvalidConnectionUrl(String)
The connection URL could not be parsed.
CouldntSetupConfiguration(Error)
Diesel could not configure the database connection.
Diesel may try to automatically set session specific configuration
values, such as UTF8 encoding, or enabling the ||
operator on MySQL.
This variant is returned if an error occurred executing the query to set
those options. Diesel will never affect global configuration.
Trait Implementations
impl PartialEq<ConnectionError> for ConnectionError
[src]
fn eq(&self, other: &ConnectionError) -> bool
[src]
fn ne(&self, other: &ConnectionError) -> bool
[src]
impl From<NulError> for ConnectionError
[src]
impl Display for ConnectionError
[src]
impl Debug for ConnectionError
[src]
impl Error for ConnectionError
[src]
Auto Trait Implementations
impl Unpin for ConnectionError
impl Sync for ConnectionError
impl Send for ConnectionError
impl !UnwindSafe for ConnectionError
impl !RefUnwindSafe for ConnectionError
Blanket Implementations
impl<T> IntoSql for T
[src]
fn into_sql<T>(self) -> AsExprOf<Self, T> where
Self: AsExpression<T> + Sized,
[src]
Self: AsExpression<T> + Sized,
Convert self
to an expression for Diesel's query builder. Read more
fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T> where
&'a Self: AsExpression<T>,
[src]
&'a Self: AsExpression<T>,
Convert &self
to an expression for Diesel's query builder. Read more
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,