pub struct ErrorLogResponse {
pub code: String,
pub category: ErrorCategory,
pub reason: String,
pub detail: Option<String>,
pub operation: Option<String>,
pub path: Option<String>,
pub visibility: Visibility,
pub hints: Vec<String>,
pub root_metadata: ErrorMetadata,
pub context: Vec<OperationContext>,
pub source_frames: Vec<SourceFrame>,
}Fields§
§code: String§category: ErrorCategory§reason: String§detail: Option<String>§operation: Option<String>§path: Option<String>§visibility: Visibility§hints: Vec<String>§root_metadata: ErrorMetadata§context: Vec<OperationContext>§source_frames: Vec<SourceFrame>Trait Implementations§
Source§impl Clone for ErrorLogResponse
impl Clone for ErrorLogResponse
Source§fn clone(&self) -> ErrorLogResponse
fn clone(&self) -> ErrorLogResponse
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 ErrorLogResponse
impl Debug for ErrorLogResponse
Source§impl PartialEq for ErrorLogResponse
impl PartialEq for ErrorLogResponse
impl StructuralPartialEq for ErrorLogResponse
Auto Trait Implementations§
impl Freeze for ErrorLogResponse
impl RefUnwindSafe for ErrorLogResponse
impl Send for ErrorLogResponse
impl Sync for ErrorLogResponse
impl Unpin for ErrorLogResponse
impl UnsafeUnpin for ErrorLogResponse
impl UnwindSafe for ErrorLogResponse
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