pub struct ErrorMetadata {
pub error_code: u32,
pub error_scope: ErrorScope,
pub is_fatal: bool,
pub retry_after_ms: u32,
pub related_session_id: u32,
pub related_frame_id: u32,
pub related_view_id: u32,
pub diagnostic_bytes: u32,
}Fields§
§error_code: u32§error_scope: ErrorScope§is_fatal: bool§retry_after_ms: u32§diagnostic_bytes: u32Implementations§
Trait Implementations§
Source§impl Clone for ErrorMetadata
impl Clone for ErrorMetadata
Source§fn clone(&self) -> ErrorMetadata
fn clone(&self) -> ErrorMetadata
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 moreimpl Copy for ErrorMetadata
Source§impl Debug for ErrorMetadata
impl Debug for ErrorMetadata
impl Eq for ErrorMetadata
Source§impl PartialEq for ErrorMetadata
impl PartialEq for ErrorMetadata
impl StructuralPartialEq for ErrorMetadata
Auto Trait Implementations§
impl Freeze for ErrorMetadata
impl RefUnwindSafe for ErrorMetadata
impl Send for ErrorMetadata
impl Sync for ErrorMetadata
impl Unpin for ErrorMetadata
impl UnsafeUnpin for ErrorMetadata
impl UnwindSafe for ErrorMetadata
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