pub struct OrphanSidecarFailure {
pub session_id: Uuid,
pub path: PathBuf,
pub error: String,
}Expand description
One reconciliation failure retained without aborting the whole bounded pass.
Fields§
§session_id: UuidSession ID inferred from the strictly validated filename.
path: PathBufExact SQLite sidecar path associated with the failed set.
error: StringContent-free filesystem or SQLite diagnostic.
Trait Implementations§
Source§impl Clone for OrphanSidecarFailure
impl Clone for OrphanSidecarFailure
Source§fn clone(&self) -> OrphanSidecarFailure
fn clone(&self) -> OrphanSidecarFailure
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OrphanSidecarFailure
impl Debug for OrphanSidecarFailure
impl Eq for OrphanSidecarFailure
Source§impl PartialEq for OrphanSidecarFailure
impl PartialEq for OrphanSidecarFailure
impl StructuralPartialEq for OrphanSidecarFailure
Auto Trait Implementations§
impl Freeze for OrphanSidecarFailure
impl RefUnwindSafe for OrphanSidecarFailure
impl Send for OrphanSidecarFailure
impl Sync for OrphanSidecarFailure
impl Unpin for OrphanSidecarFailure
impl UnsafeUnpin for OrphanSidecarFailure
impl UnwindSafe for OrphanSidecarFailure
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