Enum Minuter

Source
#[repr(u64)]
pub enum Minuter {
Show 60 variants M0 = 0, M1 = 1, M2 = 2, M3 = 3, M4 = 4, M5 = 5, M6 = 6, M7 = 7, M8 = 8, M9 = 9, M10 = 10, M11 = 11, M12 = 12, M13 = 13, M14 = 14, M15 = 15, M16 = 16, M17 = 17, M18 = 18, M19 = 19, M20 = 20, M21 = 21, M22 = 22, M23 = 23, M24 = 24, M25 = 25, M26 = 26, M27 = 27, M28 = 28, M29 = 29, M30 = 30, M31 = 31, M32 = 32, M33 = 33, M34 = 34, M35 = 35, M36 = 36, M37 = 37, M38 = 38, M39 = 39, M40 = 40, M41 = 41, M42 = 42, M43 = 43, M44 = 44, M45 = 45, M46 = 46, M47 = 47, M48 = 48, M49 = 49, M50 = 50, M51 = 51, M52 = 52, M53 = 53, M54 = 54, M55 = 55, M56 = 56, M57 = 57, M58 = 58, M59 = 59,
}

Variants§

§

M0 = 0

§

M1 = 1

§

M2 = 2

§

M3 = 3

§

M4 = 4

§

M5 = 5

§

M6 = 6

§

M7 = 7

§

M8 = 8

§

M9 = 9

§

M10 = 10

§

M11 = 11

§

M12 = 12

§

M13 = 13

§

M14 = 14

§

M15 = 15

§

M16 = 16

§

M17 = 17

§

M18 = 18

§

M19 = 19

§

M20 = 20

§

M21 = 21

§

M22 = 22

§

M23 = 23

§

M24 = 24

§

M25 = 25

§

M26 = 26

§

M27 = 27

§

M28 = 28

§

M29 = 29

§

M30 = 30

§

M31 = 31

§

M32 = 32

§

M33 = 33

§

M34 = 34

§

M35 = 35

§

M36 = 36

§

M37 = 37

§

M38 = 38

§

M39 = 39

§

M40 = 40

§

M41 = 41

§

M42 = 42

§

M43 = 43

§

M44 = 44

§

M45 = 45

§

M46 = 46

§

M47 = 47

§

M48 = 48

§

M49 = 49

§

M50 = 50

§

M51 = 51

§

M52 = 52

§

M53 = 53

§

M54 = 54

§

M55 = 55

§

M56 = 56

§

M57 = 57

§

M58 = 58

§

M59 = 59

Trait Implementations§

Source§

impl AsBizData<u64> for Minuter

Source§

fn as_data(self) -> u64

Source§

impl Clone for Minuter

Source§

fn clone(&self) -> Minuter

Returns a duplicate of the value. Read more
1.0.0 · Source§

const fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Minuter

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl FromData<u64> for Minuter

Source§

fn from_data(val: u64) -> Self

Source§

impl PartialEq for Minuter

Source§

fn eq(&self, other: &Minuter) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

const fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryFromData<u64> for Minuter

Source§

fn try_from_data(val: u64) -> Result<Self>

Source§

impl Copy for Minuter

Source§

impl Eq for Minuter

Source§

impl StructuralPartialEq for Minuter

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.