pub enum LsnError {
Invalid(String),
OutOfRange(String),
ParseFailed(String),
NotAvailable(String),
}Expand description
LSN-related error types
Variants§
Invalid(String)
LSN is invalid (malformed or corrupted)
OutOfRange(String)
LSN is out of CDC retention range
ParseFailed(String)
LSN parsing failed
NotAvailable(String)
No LSN available from CDC
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LsnError
impl RefUnwindSafe for LsnError
impl Send for LsnError
impl Sync for LsnError
impl Unpin for LsnError
impl UnsafeUnpin for LsnError
impl UnwindSafe for LsnError
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