pub struct PredictedStep<StepT> {
pub predicted_players: HashMap<LocalIndex, StepT>,
}
Fields§
§predicted_players: HashMap<LocalIndex, StepT>
Trait Implementations§
Source§impl<StepT: Clone> Clone for PredictedStep<StepT>
impl<StepT: Clone> Clone for PredictedStep<StepT>
Source§fn clone(&self) -> PredictedStep<StepT>
fn clone(&self) -> PredictedStep<StepT>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<StepT: Debug> Debug for PredictedStep<StepT>
impl<StepT: Debug> Debug for PredictedStep<StepT>
Source§impl<StepT: PartialEq> PartialEq for PredictedStep<StepT>
impl<StepT: PartialEq> PartialEq for PredictedStep<StepT>
impl<StepT> StructuralPartialEq for PredictedStep<StepT>
Auto Trait Implementations§
impl<StepT> Freeze for PredictedStep<StepT>
impl<StepT> RefUnwindSafe for PredictedStep<StepT>where
StepT: RefUnwindSafe,
impl<StepT> Send for PredictedStep<StepT>where
StepT: Send,
impl<StepT> Sync for PredictedStep<StepT>where
StepT: Sync,
impl<StepT> Unpin for PredictedStep<StepT>where
StepT: Unpin,
impl<StepT> UnwindSafe for PredictedStep<StepT>where
StepT: UnwindSafe,
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