pub enum ChangesetIdentityError {
Parse(Error),
UndeclaredTable(String),
Row(RowIdentityError),
}Variants§
Trait Implementations§
Source§impl Debug for ChangesetIdentityError
impl Debug for ChangesetIdentityError
Source§impl Display for ChangesetIdentityError
impl Display for ChangesetIdentityError
Source§impl Error for ChangesetIdentityError
impl Error for ChangesetIdentityError
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<ChangesetIdentityError> for DbError
impl From<ChangesetIdentityError> for DbError
Source§fn from(source: ChangesetIdentityError) -> Self
fn from(source: ChangesetIdentityError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for ChangesetIdentityError
impl From<Error> for ChangesetIdentityError
Source§impl From<RowIdentityError> for ChangesetIdentityError
impl From<RowIdentityError> for ChangesetIdentityError
Source§fn from(source: RowIdentityError) -> Self
fn from(source: RowIdentityError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ChangesetIdentityError
impl !RefUnwindSafe for ChangesetIdentityError
impl Send for ChangesetIdentityError
impl Sync for ChangesetIdentityError
impl Unpin for ChangesetIdentityError
impl UnsafeUnpin for ChangesetIdentityError
impl !UnwindSafe for ChangesetIdentityError
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