Enum RevIn
#[repr(u8)]pub enum RevIn {
Normal = 0,
Byte = 1,
HalfWord = 2,
Word = 3,
}Variants§
Normal = 0
Bit order not affected
Byte = 1
Bit reversal done by byte
HalfWord = 2
Bit reversal done by half-word
Word = 3
Bit reversal done by word
Implementations§
Trait Implementations§
impl Copy for RevIn
impl Eq for RevIn
§impl Ord for RevIn
impl Ord for RevIn
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 RevIn
impl PartialOrd for RevIn
impl StructuralPartialEq for RevIn
Auto Trait Implementations§
impl Freeze for RevIn
impl RefUnwindSafe for RevIn
impl Send for RevIn
impl Sync for RevIn
impl Unpin for RevIn
impl UnsafeUnpin for RevIn
impl UnwindSafe for RevIn
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