pub struct BarrierFrame {
pub client_id: ClientId,
pub barrier_id: BarrierId,
pub server_tick: Tick,
pub state: BarrierState,
}Expand description
Runtime barrier notification frame.
Fields§
§client_id: ClientIdTarget client.
barrier_id: BarrierIdBarrier id.
server_tick: TickServer tick associated with this barrier state.
state: BarrierStateCurrent barrier state.
Trait Implementations§
Source§impl Clone for BarrierFrame
impl Clone for BarrierFrame
Source§fn clone(&self) -> BarrierFrame
fn clone(&self) -> BarrierFrame
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 BarrierFrame
impl Debug for BarrierFrame
impl Eq for BarrierFrame
Source§impl PartialEq for BarrierFrame
impl PartialEq for BarrierFrame
impl StructuralPartialEq for BarrierFrame
Auto Trait Implementations§
impl Freeze for BarrierFrame
impl RefUnwindSafe for BarrierFrame
impl Send for BarrierFrame
impl Sync for BarrierFrame
impl Unpin for BarrierFrame
impl UnsafeUnpin for BarrierFrame
impl UnwindSafe for BarrierFrame
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