time: some const fns
This commit is contained in:
parent
ec4b95579d
commit
a2e73cb549
@ -8,7 +8,7 @@ pub struct Duration {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Duration {
|
impl Duration {
|
||||||
pub fn into_ticks(&self) -> u32 {
|
pub const fn into_ticks(&self) -> u32 {
|
||||||
self.ticks
|
self.ticks
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,7 +17,11 @@ impl Instant {
|
|||||||
Instant { ticks: now() }
|
Instant { ticks: now() }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn into_ticks(&self) -> u64 {
|
pub const fn from_ticks(ticks: u64) -> Self {
|
||||||
|
Self { ticks }
|
||||||
|
}
|
||||||
|
|
||||||
|
pub const fn into_ticks(&self) -> u64 {
|
||||||
self.ticks
|
self.ticks
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user