pub struct EventSet {
pub suspend_policy: u8,
pub events: Vec<Event>,
}Expand description
Composite event packet (can contain multiple events)
Fields§
§suspend_policy: u8§events: Vec<Event>Trait Implementations§
Source§impl<'de> Deserialize<'de> for EventSet
impl<'de> Deserialize<'de> for EventSet
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
Auto Trait Implementations§
impl Freeze for EventSet
impl RefUnwindSafe for EventSet
impl Send for EventSet
impl Sync for EventSet
impl Unpin for EventSet
impl UnsafeUnpin for EventSet
impl UnwindSafe for EventSet
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