Struct netemul_sync::Event
source · pub struct Event {
pub code: i32,
pub message: Option<String>,
pub arguments: Option<Vec<u8>>,
}
Expand description
An event published on a bus.
Fields§
§code: i32
User-defined event code.
message: Option<String>
An optional description of the event.
arguments: Option<Vec<u8>>
An optional collection of serialized arguments.
Implementations§
Trait Implementations§
source§impl PartialEq for Event
impl PartialEq for Event
impl StructuralPartialEq for Event
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
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