pub enum RuntimeFrame {
Replication(ReplicationFrame),
Command(CommandFrame),
CommandDispatch(CommandDispatchFrame),
CommandAck(CommandAckFrame),
Barrier(BarrierFrame),
StationEvent(StationEventFrame),
}Expand description
Decoded runtime frame.
Variants§
Replication(ReplicationFrame)
Replication update.
Command(CommandFrame)
Client command ingress.
CommandDispatch(CommandDispatchFrame)
Gateway-to-station command dispatch.
CommandAck(CommandAckFrame)
Command acknowledgement.
Barrier(BarrierFrame)
Barrier notification.
StationEvent(StationEventFrame)
Cross-station event.
Trait Implementations§
Source§impl Clone for RuntimeFrame
impl Clone for RuntimeFrame
Source§fn clone(&self) -> RuntimeFrame
fn clone(&self) -> RuntimeFrame
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RuntimeFrame
impl Debug for RuntimeFrame
impl Eq for RuntimeFrame
Source§impl PartialEq for RuntimeFrame
impl PartialEq for RuntimeFrame
impl StructuralPartialEq for RuntimeFrame
Auto Trait Implementations§
impl Freeze for RuntimeFrame
impl RefUnwindSafe for RuntimeFrame
impl Send for RuntimeFrame
impl Sync for RuntimeFrame
impl Unpin for RuntimeFrame
impl UnsafeUnpin for RuntimeFrame
impl UnwindSafe for RuntimeFrame
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