pub enum WalCommitError {
Commit(WalError),
Flush(WalError),
}Variants§
Trait Implementations§
Source§impl Debug for WalCommitError
impl Debug for WalCommitError
Source§impl Display for WalCommitError
impl Display for WalCommitError
Source§impl Error for WalCommitError
impl Error for WalCommitError
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<WalCommitError> for WalBufferedCommitError
impl From<WalCommitError> for WalBufferedCommitError
Source§fn from(source: WalCommitError) -> Self
fn from(source: WalCommitError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalCommitError
impl !RefUnwindSafe for WalCommitError
impl Send for WalCommitError
impl Sync for WalCommitError
impl Unpin for WalCommitError
impl UnsafeUnpin for WalCommitError
impl !UnwindSafe for WalCommitError
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