usestd::fmt::Debug;usestd::time::Instant;/// Bindings for FFI calls into external libraries (either provided by operating system or not).
////// All PAL FFI calls must go through this trait, enabling them to be mocked.
#[cfg_attr(test, mockall::automock)]pub(crate)traitBindings: Debug + Send + Sync + 'static {fnget_tick_count_64(&self)->u64;// We also put this here because Rust does not (yet) support a proper clock abstraction,
// so without this we have nothing to mock. This just provides a mock wrapper around `Instant`.
fnnow(&self)-> Instant;}