pub struct WireEvent {
pub event_type: String,
pub job_id: String,
pub payload: Option<Value>,
}Expand description
Go: wireEvent — inner job data lives under payload.
Fields§
§event_type: String§job_id: String§payload: Option<Value>Trait Implementations§
Source§impl<'de> Deserialize<'de> for WireEvent
impl<'de> Deserialize<'de> for WireEvent
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
impl StructuralPartialEq for WireEvent
Auto Trait Implementations§
impl Freeze for WireEvent
impl RefUnwindSafe for WireEvent
impl Send for WireEvent
impl Sync for WireEvent
impl Unpin for WireEvent
impl UnsafeUnpin for WireEvent
impl UnwindSafe for WireEvent
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