pub enum VisibleRowManagerError {
NotVisibleRow(RowData),
Test(),
RowManagerError(RowManagerError),
TransactionManagerError(TransactionManagerError),
}
Variants§
NotVisibleRow(RowData)
Test()
RowManagerError(RowManagerError)
TransactionManagerError(TransactionManagerError)
Trait Implementations§
Source§impl Debug for VisibleRowManagerError
impl Debug for VisibleRowManagerError
Source§impl Display for VisibleRowManagerError
impl Display for VisibleRowManagerError
Source§impl Error for VisibleRowManagerError
impl Error for VisibleRowManagerError
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<RowManagerError> for VisibleRowManagerError
impl From<RowManagerError> for VisibleRowManagerError
Source§fn from(source: RowManagerError) -> Self
fn from(source: RowManagerError) -> Self
Converts to this type from the input type.
Source§impl From<TransactionManagerError> for VisibleRowManagerError
impl From<TransactionManagerError> for VisibleRowManagerError
Source§fn from(source: TransactionManagerError) -> Self
fn from(source: TransactionManagerError) -> Self
Converts to this type from the input type.
Source§impl From<VisibleRowManagerError> for ConstraintManagerError
impl From<VisibleRowManagerError> for ConstraintManagerError
Source§fn from(source: VisibleRowManagerError) -> Self
fn from(source: VisibleRowManagerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VisibleRowManagerError
impl !RefUnwindSafe for VisibleRowManagerError
impl Send for VisibleRowManagerError
impl Sync for VisibleRowManagerError
impl Unpin for VisibleRowManagerError
impl !UnwindSafe for VisibleRowManagerError
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