pub struct StoredAlert {
pub session_path: String,
pub severity: String,
pub category: String,
pub timestamp: String,
pub detail: String,
}Expand description
A single alert record from the activity_alerts table
Fields§
§session_path: String§severity: String§category: String§timestamp: String§detail: StringTrait Implementations§
Source§impl Clone for StoredAlert
impl Clone for StoredAlert
Source§fn clone(&self) -> StoredAlert
fn clone(&self) -> StoredAlert
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 moreAuto Trait Implementations§
impl Freeze for StoredAlert
impl RefUnwindSafe for StoredAlert
impl Send for StoredAlert
impl Sync for StoredAlert
impl Unpin for StoredAlert
impl UnsafeUnpin for StoredAlert
impl UnwindSafe for StoredAlert
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