pub struct RealityWindow {
pub τs: StateTime,
pub hc: Duration,
pub hp: Duration,
}Expand description
Reality Window - defines the temporal bounds for event processing RW = [τs - Hc, τs + Hp]
Fields§
§τs: StateTimeCurrent state time
hc: DurationCorrection horizon (how far back we can correct)
hp: DurationPrediction horizon (how far ahead we predict)
Implementations§
Trait Implementations§
Source§impl Clone for RealityWindow
impl Clone for RealityWindow
Source§fn clone(&self) -> RealityWindow
fn clone(&self) -> RealityWindow
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 RealityWindow
impl Debug for RealityWindow
impl Copy for RealityWindow
Auto Trait Implementations§
impl Freeze for RealityWindow
impl RefUnwindSafe for RealityWindow
impl Send for RealityWindow
impl Sync for RealityWindow
impl Unpin for RealityWindow
impl UnwindSafe for RealityWindow
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