pub struct AppError {
pub id: i64,
pub fingerprint: String,
pub exception_class: String,
pub message: String,
pub first_seen_at: String,
pub last_seen_at: String,
pub occurrence_count: i64,
pub status: String,
}Fields§
§id: i64§fingerprint: String§exception_class: String§message: String§first_seen_at: String§last_seen_at: String§occurrence_count: i64§status: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for AppError
impl<'de> Deserialize<'de> for AppError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AppError
impl RefUnwindSafe for AppError
impl Send for AppError
impl Sync for AppError
impl Unpin for AppError
impl UnsafeUnpin for AppError
impl UnwindSafe for AppError
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