#[non_exhaustive]#[repr(u32)]pub enum pm_pack_signed {
PM_PACK_UNSIGNED = 0,
PM_PACK_SIGNED = 1,
PM_PACK_SIGNED_NA = 2,
}
Expand description
The signness of a pack directive.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for pm_pack_signed
impl Clone for pm_pack_signed
Source§fn clone(&self) -> pm_pack_signed
fn clone(&self) -> pm_pack_signed
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for pm_pack_signed
impl Debug for pm_pack_signed
Source§impl Hash for pm_pack_signed
impl Hash for pm_pack_signed
Source§impl PartialEq for pm_pack_signed
impl PartialEq for pm_pack_signed
impl Copy for pm_pack_signed
impl Eq for pm_pack_signed
impl StructuralPartialEq for pm_pack_signed
Auto Trait Implementations§
impl Freeze for pm_pack_signed
impl RefUnwindSafe for pm_pack_signed
impl Send for pm_pack_signed
impl Sync for pm_pack_signed
impl Unpin for pm_pack_signed
impl UnwindSafe for pm_pack_signed
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