pub struct ForensicActivity {
pub timestamp: Filetime,
pub user: String,
pub session_id: SessionId,
pub activity: ActivityType,
}Expand description
Activity of a user in a device
Fields§
§timestamp: Filetime§user: String§session_id: SessionId§activity: ActivityTypeTrait Implementations§
Source§impl Clone for ForensicActivity
impl Clone for ForensicActivity
Source§fn clone(&self) -> ForensicActivity
fn clone(&self) -> ForensicActivity
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 ForensicActivity
impl Debug for ForensicActivity
Source§impl Default for ForensicActivity
impl Default for ForensicActivity
Source§fn default() -> ForensicActivity
fn default() -> ForensicActivity
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ForensicActivity
impl RefUnwindSafe for ForensicActivity
impl Send for ForensicActivity
impl Sync for ForensicActivity
impl Unpin for ForensicActivity
impl UnwindSafe for ForensicActivity
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