pub struct Event {
pub exception_class: String,
pub message: String,
pub backtrace: Vec<Frame>,
pub occurred_at: String,
pub environment: String,
pub release: Option<String>,
pub server_name: Option<String>,
pub context: HashMap<String, Value>,
pub tags: HashMap<String, Value>,
}Fields§
§exception_class: String§message: String§backtrace: Vec<Frame>§occurred_at: String§environment: String§release: Option<String>§server_name: Option<String>§context: HashMap<String, Value>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnsafeUnpin for Event
impl UnwindSafe for Event
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