viva_genicam/time.rs
1//! Re-exports the canonical TimeSync implementation from tl-gige.
2//!
3//! The [`TimeSync`] struct maintains a sliding window of timestamp measurements
4//! and computes a linear model mapping device ticks to host time. See the
5//! `viva_gige::time` module for full documentation.
6
7pub use viva_gige::time::{DEFAULT_TIME_WINDOW, TimeSync};