pub struct SnapshotSectionError {
pub section: SnapshotSection,
pub message: Cow<'static, str>,
}Expand description
Section-level error recorded during snapshot collection.
Fields§
§section: SnapshotSectionSection that failed.
message: Cow<'static, str>Human-readable failure message.
Trait Implementations§
Source§impl Clone for SnapshotSectionError
impl Clone for SnapshotSectionError
Source§fn clone(&self) -> SnapshotSectionError
fn clone(&self) -> SnapshotSectionError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SnapshotSectionError
impl RefUnwindSafe for SnapshotSectionError
impl Send for SnapshotSectionError
impl Sync for SnapshotSectionError
impl Unpin for SnapshotSectionError
impl UnsafeUnpin for SnapshotSectionError
impl UnwindSafe for SnapshotSectionError
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