pub struct KeylogEntry {
pub keystrokes: String,
pub user: Option<String>,
pub window_title: Option<String>,
}Fields§
§keystrokes: String§user: Option<String>§window_title: Option<String>Trait Implementations§
Source§impl Clone for KeylogEntry
impl Clone for KeylogEntry
Source§fn clone(&self) -> KeylogEntry
fn clone(&self) -> KeylogEntry
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 moreSource§impl Debug for KeylogEntry
impl Debug for KeylogEntry
Source§impl Default for KeylogEntry
impl Default for KeylogEntry
Source§fn default() -> KeylogEntry
fn default() -> KeylogEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KeylogEntry
impl<'de> Deserialize<'de> for KeylogEntry
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
Source§impl PartialEq for KeylogEntry
impl PartialEq for KeylogEntry
Source§fn eq(&self, other: &KeylogEntry) -> bool
fn eq(&self, other: &KeylogEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for KeylogEntry
impl Serialize for KeylogEntry
impl Eq for KeylogEntry
impl StructuralPartialEq for KeylogEntry
Auto Trait Implementations§
impl Freeze for KeylogEntry
impl RefUnwindSafe for KeylogEntry
impl Send for KeylogEntry
impl Sync for KeylogEntry
impl Unpin for KeylogEntry
impl UnsafeUnpin for KeylogEntry
impl UnwindSafe for KeylogEntry
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