pub struct PredictiveDelta {
pub delta: PositionDelta,
pub velocity: Velocity,
pub predicted_next: Position3D,
}Fields§
§delta: PositionDelta§velocity: Velocity§predicted_next: Position3DTrait Implementations§
Source§impl Clone for PredictiveDelta
impl Clone for PredictiveDelta
Source§fn clone(&self) -> PredictiveDelta
fn clone(&self) -> PredictiveDelta
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 PredictiveDelta
impl Debug for PredictiveDelta
Source§impl<'de> Deserialize<'de> for PredictiveDelta
impl<'de> Deserialize<'de> for PredictiveDelta
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 PartialEq for PredictiveDelta
impl PartialEq for PredictiveDelta
Source§impl Serialize for PredictiveDelta
impl Serialize for PredictiveDelta
impl StructuralPartialEq for PredictiveDelta
Auto Trait Implementations§
impl Freeze for PredictiveDelta
impl RefUnwindSafe for PredictiveDelta
impl Send for PredictiveDelta
impl Sync for PredictiveDelta
impl Unpin for PredictiveDelta
impl UnwindSafe for PredictiveDelta
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