usepocket_ic::PocketIc;/// Focused time conversions missing from PocketIC's native API.
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()}}