pub struct SystemEvent {
pub type_: Option<String>,
}Expand description
Event triggered by system operations instead of end users.
This type is not used in any activity, and only used as part of another schema.
Fields§
§type_: Option<String>The type of the system event that may triggered activity.
Trait Implementations§
Source§impl Clone for SystemEvent
impl Clone for SystemEvent
Source§fn clone(&self) -> SystemEvent
fn clone(&self) -> SystemEvent
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 SystemEvent
impl Debug for SystemEvent
Source§impl Default for SystemEvent
impl Default for SystemEvent
Source§fn default() -> SystemEvent
fn default() -> SystemEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SystemEvent
impl<'de> Deserialize<'de> for SystemEvent
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 Serialize for SystemEvent
impl Serialize for SystemEvent
impl Part for SystemEvent
Auto Trait Implementations§
impl Freeze for SystemEvent
impl RefUnwindSafe for SystemEvent
impl Send for SystemEvent
impl Sync for SystemEvent
impl Unpin for SystemEvent
impl UnwindSafe for SystemEvent
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