pub enum ExporterError {
CsvError(Error),
IoError(Error),
}
Variants§
Trait Implementations§
Source§impl Debug for ExporterError
impl Debug for ExporterError
Source§impl From<Error> for ExporterError
impl From<Error> for ExporterError
Source§impl From<Error> for ExporterError
impl From<Error> for ExporterError
Source§impl From<ExporterError> for VocabStoreError
impl From<ExporterError> for VocabStoreError
Source§fn from(e: ExporterError) -> Self
fn from(e: ExporterError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExporterError
impl !RefUnwindSafe for ExporterError
impl Send for ExporterError
impl Sync for ExporterError
impl Unpin for ExporterError
impl !UnwindSafe for ExporterError
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
Source§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expressionwhere
Self: Sized + AsExpression<T>,
fn into_sql<T>(self) -> Self::Expressionwhere
Self: Sized + AsExpression<T>,
Convert
self
to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere
&'a Self: AsExpression<T>,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere
&'a Self: AsExpression<T>,
Convert
&self
to an expression for Diesel’s query builder. Read more