pub struct Pa(pub u64);Expand description
A Guest Physical Address.
Tuple Fields§
§0: u64Implementations§
Trait Implementations§
Source§impl AddAssign<u64> for Pa
impl AddAssign<u64> for Pa
Source§fn add_assign(&mut self, rhs: u64)
fn add_assign(&mut self, rhs: u64)
Performs the
+= operation. Read moreSource§impl AddAssign for Pa
impl AddAssign for Pa
Source§fn add_assign(&mut self, rhs: Pa)
fn add_assign(&mut self, rhs: Pa)
Performs the
+= operation. Read moreSource§impl BitAndAssign<u64> for Pa
impl BitAndAssign<u64> for Pa
Source§fn bitand_assign(&mut self, rhs: u64)
fn bitand_assign(&mut self, rhs: u64)
Performs the
&= operation. Read moreSource§impl BitOrAssign<u64> for Pa
impl BitOrAssign<u64> for Pa
Source§fn bitor_assign(&mut self, rhs: u64)
fn bitor_assign(&mut self, rhs: u64)
Performs the
|= operation. Read moreSource§impl<'de> Deserialize<'de> for Pa
impl<'de> Deserialize<'de> for Pa
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Pa, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Pa, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl DivAssign<u64> for Pa
impl DivAssign<u64> for Pa
Source§fn div_assign(&mut self, rhs: u64)
fn div_assign(&mut self, rhs: u64)
Performs the
/= operation. Read moreSource§impl DivAssign for Pa
impl DivAssign for Pa
Source§fn div_assign(&mut self, rhs: Pa)
fn div_assign(&mut self, rhs: Pa)
Performs the
/= operation. Read moreSource§impl From<Pa> for AccessContext
impl From<Pa> for AccessContext
Source§fn from(value: Pa) -> AccessContext
fn from(value: Pa) -> AccessContext
Converts to this type from the input type.
Source§impl MulAssign<u64> for Pa
impl MulAssign<u64> for Pa
Source§fn mul_assign(&mut self, rhs: u64)
fn mul_assign(&mut self, rhs: u64)
Performs the
*= operation. Read moreSource§impl MulAssign for Pa
impl MulAssign for Pa
Source§fn mul_assign(&mut self, rhs: Pa)
fn mul_assign(&mut self, rhs: Pa)
Performs the
*= operation. Read moreSource§impl Ord for Pa
impl Ord for Pa
Source§impl PartialOrd for Pa
impl PartialOrd for Pa
Source§impl Serialize for Pa
impl Serialize for Pa
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl SubAssign<u64> for Pa
impl SubAssign<u64> for Pa
Source§fn sub_assign(&mut self, rhs: u64)
fn sub_assign(&mut self, rhs: u64)
Performs the
-= operation. Read moreSource§impl SubAssign for Pa
impl SubAssign for Pa
Source§fn sub_assign(&mut self, rhs: Pa)
fn sub_assign(&mut self, rhs: Pa)
Performs the
-= operation. Read moreimpl Copy for Pa
impl Eq for Pa
impl StructuralPartialEq for Pa
Auto Trait Implementations§
impl Freeze for Pa
impl RefUnwindSafe for Pa
impl Send for Pa
impl Sync for Pa
impl Unpin for Pa
impl UnwindSafe for Pa
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.