pub struct PushEvent {
pub handle: RouteHandle,
pub body: Vec<u8>,
}Expand description
A provider-originated push delivered on one live route.
Fields§
§handle: RouteHandleThe connection-fenced route identity on which the push arrived.
body: Vec<u8>Opaque payload bytes sent by the provider.
Trait Implementations§
impl Eq for PushEvent
impl StructuralPartialEq for PushEvent
Auto Trait Implementations§
impl Freeze for PushEvent
impl RefUnwindSafe for PushEvent
impl Send for PushEvent
impl Sync for PushEvent
impl Unpin for PushEvent
impl UnsafeUnpin for PushEvent
impl UnwindSafe for PushEvent
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