pub struct StableSnapshotSourceFrame {
pub index: usize,
pub message: String,
pub error_code: Option<i32>,
pub reason: Option<String>,
pub want: Option<String>,
pub path: Option<String>,
pub detail: Option<String>,
pub metadata: ErrorMetadata,
pub is_root_cause: bool,
}Fields§
§index: usize§message: String§error_code: Option<i32>§reason: Option<String>§want: Option<String>§path: Option<String>§detail: Option<String>§metadata: ErrorMetadata§is_root_cause: boolTrait Implementations§
Source§impl Clone for StableSnapshotSourceFrame
impl Clone for StableSnapshotSourceFrame
Source§fn clone(&self) -> StableSnapshotSourceFrame
fn clone(&self) -> StableSnapshotSourceFrame
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 moreSource§impl Debug for StableSnapshotSourceFrame
impl Debug for StableSnapshotSourceFrame
Source§impl From<&SnapshotSourceFrame> for StableSnapshotSourceFrame
impl From<&SnapshotSourceFrame> for StableSnapshotSourceFrame
Source§fn from(value: &SnapshotSourceFrame) -> Self
fn from(value: &SnapshotSourceFrame) -> Self
Converts to this type from the input type.
Source§impl From<&StableSnapshotSourceFrame> for SnapshotSourceFrame
impl From<&StableSnapshotSourceFrame> for SnapshotSourceFrame
Source§fn from(value: &StableSnapshotSourceFrame) -> Self
fn from(value: &StableSnapshotSourceFrame) -> Self
Converts to this type from the input type.
Source§impl From<&StableSnapshotSourceFrame> for SourceFrame
impl From<&StableSnapshotSourceFrame> for SourceFrame
Source§fn from(value: &StableSnapshotSourceFrame) -> Self
fn from(value: &StableSnapshotSourceFrame) -> Self
Converts to this type from the input type.
Source§impl From<SnapshotSourceFrame> for StableSnapshotSourceFrame
impl From<SnapshotSourceFrame> for StableSnapshotSourceFrame
Source§fn from(value: SnapshotSourceFrame) -> Self
fn from(value: SnapshotSourceFrame) -> Self
Converts to this type from the input type.
Source§impl From<StableSnapshotSourceFrame> for SnapshotSourceFrame
impl From<StableSnapshotSourceFrame> for SnapshotSourceFrame
Source§fn from(value: StableSnapshotSourceFrame) -> Self
fn from(value: StableSnapshotSourceFrame) -> Self
Converts to this type from the input type.
Source§impl From<StableSnapshotSourceFrame> for SourceFrame
impl From<StableSnapshotSourceFrame> for SourceFrame
Source§fn from(value: StableSnapshotSourceFrame) -> Self
fn from(value: StableSnapshotSourceFrame) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for StableSnapshotSourceFrame
Auto Trait Implementations§
impl Freeze for StableSnapshotSourceFrame
impl RefUnwindSafe for StableSnapshotSourceFrame
impl Send for StableSnapshotSourceFrame
impl Sync for StableSnapshotSourceFrame
impl Unpin for StableSnapshotSourceFrame
impl UnsafeUnpin for StableSnapshotSourceFrame
impl UnwindSafe for StableSnapshotSourceFrame
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