pub enum ClientInboundFrameRef<'a> {
CommandAck(CommandAckFrame),
Replication(ReplicationFrameRef<'a>),
Barrier(BarrierFrame),
}Expand description
Client-bound frame visited without materializing replication delta storage.
Variants§
CommandAck(CommandAckFrame)
Decoded command acknowledgement value.
Replication(ReplicationFrameRef<'a>)
Validated replication frame borrowing entity/component payload bytes.
Barrier(BarrierFrame)
Decoded runtime barrier notification value.
Trait Implementations§
Source§impl<'a> Clone for ClientInboundFrameRef<'a>
impl<'a> Clone for ClientInboundFrameRef<'a>
Source§fn clone(&self) -> ClientInboundFrameRef<'a>
fn clone(&self) -> ClientInboundFrameRef<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for ClientInboundFrameRef<'a>
impl<'a> RefUnwindSafe for ClientInboundFrameRef<'a>
impl<'a> Send for ClientInboundFrameRef<'a>
impl<'a> Sync for ClientInboundFrameRef<'a>
impl<'a> Unpin for ClientInboundFrameRef<'a>
impl<'a> UnsafeUnpin for ClientInboundFrameRef<'a>
impl<'a> UnwindSafe for ClientInboundFrameRef<'a>
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