pub enum PgTableError {
Empty,
UnknownKind,
UnknownPersistence,
Identifier(PgIdentifierError),
}Expand description
Error returned when PostgreSQL table metadata is invalid.
Variants§
Trait Implementations§
Source§impl Clone for PgTableError
impl Clone for PgTableError
Source§fn clone(&self) -> PgTableError
fn clone(&self) -> PgTableError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PgTableError
impl Debug for PgTableError
Source§impl Display for PgTableError
impl Display for PgTableError
Source§impl Error for PgTableError
impl Error for PgTableError
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 PgTableError
impl PartialEq for PgTableError
Source§fn eq(&self, other: &PgTableError) -> bool
fn eq(&self, other: &PgTableError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PgTableError
impl StructuralPartialEq for PgTableError
Auto Trait Implementations§
impl Freeze for PgTableError
impl RefUnwindSafe for PgTableError
impl Send for PgTableError
impl Sync for PgTableError
impl Unpin for PgTableError
impl UnsafeUnpin for PgTableError
impl UnwindSafe for PgTableError
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