Enum Pr
#[repr(u8)]pub enum Pr {
Show 16 variants
DivideBy4 = 0,
DivideBy8 = 1,
DivideBy16 = 2,
DivideBy32 = 3,
DivideBy64 = 4,
DivideBy128 = 5,
DivideBy256 = 6,
DivideBy512 = 7,
DivideBy1024 = 8,
_RESERVED_9 = 9,
_RESERVED_a = 10,
_RESERVED_b = 11,
_RESERVED_c = 12,
_RESERVED_d = 13,
_RESERVED_e = 14,
_RESERVED_f = 15,
}Variants§
DivideBy4 = 0
Divider /4
DivideBy8 = 1
Divider /8
DivideBy16 = 2
Divider /16
DivideBy32 = 3
Divider /32
DivideBy64 = 4
Divider /64
DivideBy128 = 5
Divider /128
DivideBy256 = 6
Divider /256
DivideBy512 = 7
Divider /512
DivideBy1024 = 8
Divider /1024
_RESERVED_9 = 9
_RESERVED_a = 10
_RESERVED_b = 11
_RESERVED_c = 12
_RESERVED_d = 13
_RESERVED_e = 14
_RESERVED_f = 15
Implementations§
Trait Implementations§
impl Copy for Pr
impl Eq for Pr
§impl Ord for Pr
impl Ord for Pr
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialOrd for Pr
impl PartialOrd for Pr
impl StructuralPartialEq for Pr
Auto Trait Implementations§
impl Freeze for Pr
impl RefUnwindSafe for Pr
impl Send for Pr
impl Sync for Pr
impl Unpin for Pr
impl UnsafeUnpin for Pr
impl UnwindSafe for Pr
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