pub enum BindResultLogError {
Open(Error),
Read(Error),
Parse(usize, Error),
}Expand description
Error type for load_bind_result_log failures.
Variants§
Open(Error)
The log file could not be opened (missing, permission denied, etc.).
Read(Error)
A line could not be read from the file.
Parse(usize, Error)
A line in the log was not valid JSON for BindResultEntry.
Contains the line number (1-based) and the raw parse error.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for BindResultLogError
impl !UnwindSafe for BindResultLogError
impl Freeze for BindResultLogError
impl Send for BindResultLogError
impl Sync for BindResultLogError
impl Unpin for BindResultLogError
impl UnsafeUnpin for BindResultLogError
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