pub enum SqlSchemaError {
Identifier(SqlIdentifierError),
}Expand description
Error returned when SQL schema metadata is invalid.
Variants§
Identifier(SqlIdentifierError)
Trait Implementations§
Source§impl Clone for SqlSchemaError
impl Clone for SqlSchemaError
Source§fn clone(&self) -> SqlSchemaError
fn clone(&self) -> SqlSchemaError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SqlSchemaError
impl Debug for SqlSchemaError
Source§impl Display for SqlSchemaError
impl Display for SqlSchemaError
Source§impl Error for SqlSchemaError
impl Error for SqlSchemaError
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 PartialEq for SqlSchemaError
impl PartialEq for SqlSchemaError
impl Eq for SqlSchemaError
impl StructuralPartialEq for SqlSchemaError
Auto Trait Implementations§
impl Freeze for SqlSchemaError
impl RefUnwindSafe for SqlSchemaError
impl Send for SqlSchemaError
impl Sync for SqlSchemaError
impl Unpin for SqlSchemaError
impl UnsafeUnpin for SqlSchemaError
impl UnwindSafe for SqlSchemaError
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