Struct gix_worktree_state::checkout::ErrorRecord
source · pub struct ErrorRecord {
pub path: BString,
pub error: Box<dyn Error + Send + Sync + 'static>,
}
Expand description
A path that encountered an IO error.
Fields§
§path: BString
the path that encountered the error.
error: Box<dyn Error + Send + Sync + 'static>
The error
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ErrorRecord
impl !RefUnwindSafe for ErrorRecord
impl Send for ErrorRecord
impl Sync for ErrorRecord
impl Unpin for ErrorRecord
impl !UnwindSafe for ErrorRecord
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