pub struct AxWatchEvent {
pub watch_id: String,
pub event: String,
pub at_ms: u64,
pub role: Option<String>,
pub title: Option<String>,
pub identifier: Option<String>,
pub pid: Option<i32>,
}Fields§
§watch_id: String§event: String§at_ms: u64§role: Option<String>§title: Option<String>§identifier: Option<String>§pid: Option<i32>Trait Implementations§
Source§impl Clone for AxWatchEvent
impl Clone for AxWatchEvent
Source§fn clone(&self) -> AxWatchEvent
fn clone(&self) -> AxWatchEvent
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 AxWatchEvent
impl Debug for AxWatchEvent
Source§impl Default for AxWatchEvent
impl Default for AxWatchEvent
Source§fn default() -> AxWatchEvent
fn default() -> AxWatchEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AxWatchEvent
impl<'de> Deserialize<'de> for AxWatchEvent
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 AxWatchEvent
impl PartialEq for AxWatchEvent
Source§impl Serialize for AxWatchEvent
impl Serialize for AxWatchEvent
impl Eq for AxWatchEvent
impl StructuralPartialEq for AxWatchEvent
Auto Trait Implementations§
impl Freeze for AxWatchEvent
impl RefUnwindSafe for AxWatchEvent
impl Send for AxWatchEvent
impl Sync for AxWatchEvent
impl Unpin for AxWatchEvent
impl UnsafeUnpin for AxWatchEvent
impl UnwindSafe for AxWatchEvent
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