pub enum InterpolationInsert {
Newest,
Late,
Replaced,
}Expand description
Result of inserting one remote state.
Variants§
Newest
A state newer than every buffered Tick was inserted.
Late
A previously missing older Tick was inserted out of order.
Replaced
A duplicate Tick replaced its buffered state.
Trait Implementations§
Source§impl Clone for InterpolationInsert
impl Clone for InterpolationInsert
Source§fn clone(&self) -> InterpolationInsert
fn clone(&self) -> InterpolationInsert
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 moreimpl Copy for InterpolationInsert
Source§impl Debug for InterpolationInsert
impl Debug for InterpolationInsert
impl Eq for InterpolationInsert
Source§impl PartialEq for InterpolationInsert
impl PartialEq for InterpolationInsert
impl StructuralPartialEq for InterpolationInsert
Auto Trait Implementations§
impl Freeze for InterpolationInsert
impl RefUnwindSafe for InterpolationInsert
impl Send for InterpolationInsert
impl Sync for InterpolationInsert
impl Unpin for InterpolationInsert
impl UnsafeUnpin for InterpolationInsert
impl UnwindSafe for InterpolationInsert
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