usepocket_ic::PocketIc;/// Focused time conversion missing from PocketIC's native API.
////// All mutation, certified-time, and round operations stay on [`PocketIc`].
pubtraitPocketIcTimeExt{/// Read PocketIC wall-clock time as nanoseconds since the Unix epoch.
fncurrent_time_nanos(&self)->u64;}implPocketIcTimeExt forPocketIc{fncurrent_time_nanos(&self)->u64{self.get_time().as_nanos_since_unix_epoch()}}