pub struct Minute;
Expand description
A unit of time representing exactly one minute.
Implementations§
Source§impl Minute
impl Minute
Sourcepub const fn per<T>(_larger: T) -> <T as DefaultOutput<Self>>::Outputwhere
T: MultipleOf<Self, T::Output> + DefaultOutput<Self> + Copy,
pub const fn per<T>(_larger: T) -> <T as DefaultOutput<Self>>::Outputwhere
T: MultipleOf<Self, T::Output> + DefaultOutput<Self> + Copy,
Obtain the number of times Minute
can fit into T
.
If T
is smaller than Minute
, the code will fail to
compile. The return type is the smallest unsigned integer type that can represent
the value.
Valid calls:
Minute::per(Minute)
(returnsu8
)Minute::per(Hour)
(returnsu8
)Minute::per(Day)
(returnsu16
)Minute::per(Week)
(returnsu16
)
Sourcepub const fn per_t<Output>(
larger: impl MultipleOf<Self, Output> + Copy,
) -> Output
pub const fn per_t<Output>( larger: impl MultipleOf<Self, Output> + Copy, ) -> Output
Obtain the number of times Minute
can fit into T
.
If T
is smaller than Minute
, the code will fail to
compile. The return type is any primitive numeric type that can represent the value.
Valid calls:
Minute::per(Minute)
(returnsu8
,u16
,u32
,u64
,u128
,usize
,i8
,i16
,i32
,i64
,i128
,isize
,f32
, orf64
)Minute::per(Hour)
(returnsu8
,u16
,u32
,u64
,u128
,usize
,i8
,i16
,i32
,i64
,i128
,isize
,f32
, orf64
)Minute::per(Day)
(returnsu16
,u32
,u64
,u128
,usize
,i16
,i32
,i64
,i128
,isize
,f32
, orf64
)Minute::per(Week)
(returnsu16
,u32
,u64
,u128
,usize
,i16
,i32
,i64
,i128
,isize
,f32
, orf64
)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Minute
impl RefUnwindSafe for Minute
impl Send for Minute
impl Sync for Minute
impl Unpin for Minute
impl UnwindSafe for Minute
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 0 bytes