pub enum ReorderError<T: ChannelMutTxnT> {
Txn(TxnErr<T::GraphError>),
TaggedPosition(ApplyTimestamp),
}Variants§
Txn(TxnErr<T::GraphError>)
TaggedPosition(ApplyTimestamp)
A tag exists at a position that would need to be moved.
Trait Implementations§
Source§impl<T: ChannelMutTxnT> Debug for ReorderError<T>
impl<T: ChannelMutTxnT> Debug for ReorderError<T>
Source§impl<T: ChannelMutTxnT> Display for ReorderError<T>
impl<T: ChannelMutTxnT> Display for ReorderError<T>
Source§impl<T: ChannelMutTxnT + 'static> Error for ReorderError<T>
impl<T: ChannelMutTxnT + 'static> Error for ReorderError<T>
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<T: ChannelMutTxnT> From<TxnErr<<T as GraphTxnT>::GraphError>> for ReorderError<T>
impl<T: ChannelMutTxnT> From<TxnErr<<T as GraphTxnT>::GraphError>> for ReorderError<T>
Source§fn from(e: TxnErr<T::GraphError>) -> Self
fn from(e: TxnErr<T::GraphError>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for ReorderError<T>
impl<T> RefUnwindSafe for ReorderError<T>
impl<T> Send for ReorderError<T>
impl<T> Sync for ReorderError<T>
impl<T> Unpin for ReorderError<T>
impl<T> UnsafeUnpin for ReorderError<T>
impl<T> UnwindSafe for ReorderError<T>
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