pub struct EventEnvelope {
pub seq: u64,
pub event: Value,
}Expand description
One envelope in the response page. Wire-compatible with the
/ws/events frame shape (ws.rs::build_envelope).
Fields§
§seq: u64§event: ValueTrait Implementations§
Source§impl Debug for EventEnvelope
impl Debug for EventEnvelope
Auto Trait Implementations§
impl Freeze for EventEnvelope
impl RefUnwindSafe for EventEnvelope
impl Send for EventEnvelope
impl Sync for EventEnvelope
impl Unpin for EventEnvelope
impl UnsafeUnpin for EventEnvelope
impl UnwindSafe for EventEnvelope
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