pub enum SimulationTier {
Canonical,
Predicted,
PresentationOnly,
}Expand description
Fidelity tier for simulation updates.
Variants§
Canonical
Server-authoritative truth (reducers execute here).
Predicted
Client-side prediction (rolled back on mismatch).
PresentationOnly
Visual-only interpolation (no gameplay effect).
Trait Implementations§
Source§impl Clone for SimulationTier
impl Clone for SimulationTier
Source§fn clone(&self) -> SimulationTier
fn clone(&self) -> SimulationTier
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 Debug for SimulationTier
impl Debug for SimulationTier
Source§impl<'de> Deserialize<'de> for SimulationTier
impl<'de> Deserialize<'de> for SimulationTier
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for SimulationTier
impl Hash for SimulationTier
Source§impl PartialEq for SimulationTier
impl PartialEq for SimulationTier
Source§impl Serialize for SimulationTier
impl Serialize for SimulationTier
impl Copy for SimulationTier
impl Eq for SimulationTier
impl StructuralPartialEq for SimulationTier
Auto Trait Implementations§
impl Freeze for SimulationTier
impl RefUnwindSafe for SimulationTier
impl Send for SimulationTier
impl Sync for SimulationTier
impl Unpin for SimulationTier
impl UnsafeUnpin for SimulationTier
impl UnwindSafe for SimulationTier
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