(nanos: i128)
| 61 | fn from_nanoseconds(nanos: i64) -> Self { |
| 62 | Self::from_nanos(nanos) |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | impl<T: super::NanoType + Copy> DurationParse for super::Diff<T> { |
| 67 | fn from_nanoseconds(nanos: i64) -> Self { |
| 68 | Self::from_nanos(nanos) |
nothing calls this directly
no outgoing calls
no test coverage detected