#[repr(u64)]pub enum Arm64PageSize {
Small = 4_096,
Large = 2_097_152,
Huge = 1_073_741_824,
}
Variants§
Trait Implementations§
Source§impl Clone for Arm64PageSize
impl Clone for Arm64PageSize
Source§fn clone(&self) -> Arm64PageSize
fn clone(&self) -> Arm64PageSize
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 Arm64PageSize
impl Debug for Arm64PageSize
Source§impl From<Arm64PageSize> for u64
impl From<Arm64PageSize> for u64
Source§fn from(value: Arm64PageSize) -> Self
fn from(value: Arm64PageSize) -> Self
Converts to this type from the input type.
Source§impl From<Arm64PageSize> for usize
impl From<Arm64PageSize> for usize
Source§fn from(value: Arm64PageSize) -> Self
fn from(value: Arm64PageSize) -> Self
Converts to this type from the input type.
impl Copy for Arm64PageSize
Auto Trait Implementations§
impl Freeze for Arm64PageSize
impl RefUnwindSafe for Arm64PageSize
impl Send for Arm64PageSize
impl Sync for Arm64PageSize
impl Unpin for Arm64PageSize
impl UnwindSafe for Arm64PageSize
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