Enum Pam
#[repr(u8)]pub enum Pam {
RIGHT_PADDED = 0,
RIGHT_SIGN_EXTENDED = 1,
LEFT_PADDED = 2,
_RESERVED_3 = 3,
}Variants§
RIGHT_PADDED = 0
Right aligned, padded with 0s (default). If source data is larger than destination size, only LSB part of the source is written to the destination address. The reminder part is discarded
RIGHT_SIGN_EXTENDED = 1
Right aligned, sign extended
LEFT_PADDED = 2
Left aligned (padded with 0s). if source data is larger than destination size, only MSB part of the source is written to the destination address. The reminder part is discarded
_RESERVED_3 = 3
Implementations§
Trait Implementations§
§impl Ord for Pam
impl Ord for Pam
§impl PartialOrd for Pam
impl PartialOrd for Pam
impl Copy for Pam
impl Eq for Pam
impl StructuralPartialEq for Pam
Auto Trait Implementations§
impl Freeze for Pam
impl RefUnwindSafe for Pam
impl Send for Pam
impl Sync for Pam
impl Unpin for Pam
impl UnwindSafe for Pam
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