Skip to content

Commit

Permalink
Move another misplaced use back
Browse files Browse the repository at this point in the history
  • Loading branch information
tdittr authored and davidv1992 committed Nov 23, 2023
1 parent 8769cbc commit 1da068e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions statime/src/filters/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
mod basic;

use crate::{port::Measurement, time::Duration, Clock};
pub use basic::BasicFilter;

use crate::{port::Measurement, Clock};

#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct FilterUpdate {
pub next_update: Option<core::time::Duration>,
pub mean_delay: Option<crate::time::Duration>,
pub mean_delay: Option<Duration>,
}

/// A filter for post-processing time measurements.
Expand Down

0 comments on commit 1da068e

Please sign in to comment.