pub enum FrameKind {
Replication = 0,
CommandAck = 1,
Barrier = 2,
Command = 3,
StationEvent = 4,
CommandDispatch = 5,
}Expand description
Runtime frame kind.
Variants§
Replication = 0
Replication update frame.
CommandAck = 1
Command acknowledgement frame.
Barrier = 2
Runtime barrier notification.
Command = 3
Client command ingress frame.
StationEvent = 4
Cross-station event frame.
CommandDispatch = 5
Gateway-to-station command dispatch frame.
Implementations§
Trait Implementations§
impl Copy for FrameKind
impl Eq for FrameKind
impl StructuralPartialEq for FrameKind
Auto Trait Implementations§
impl Freeze for FrameKind
impl RefUnwindSafe for FrameKind
impl Send for FrameKind
impl Sync for FrameKind
impl Unpin for FrameKind
impl UnsafeUnpin for FrameKind
impl UnwindSafe for FrameKind
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