[][src]Struct flp_framework::address::AddrAddr

#[repr(C)]
pub struct AddrAddr(_);

A generic address that points to a memory location containing an address.

Trait Implementations

impl Address for AddrAddr[src]

fn from_usize(val: usize) -> AddrAddr[src]

Construct an address of this type from a raw usize value.

fn as_usize(&self) -> usize[src]

Deconstruct this address into a raw usize value.

fn verify(self) -> bool[src]

Default verification of proper address alignment.

impl Clone for AddrAddr[src]

impl Copy for AddrAddr[src]

impl Debug for AddrAddr[src]

fn fmt(&self, f: &mut Formatter) -> Result[src]

Display this address as a prettified alphanumeric hex string for debugging.

impl Display for AddrAddr[src]

fn fmt(&self, f: &mut Formatter) -> Result[src]

Display this address as a prettified alphanumeric hex string.

impl Eq for AddrAddr[src]

impl Hash for AddrAddr[src]

impl Ord for AddrAddr[src]

fn cmp(&self, other: &AddrAddr) -> Ordering[src]

Address ordinality delegates to usize ordinality.

impl PartialEq<AddrAddr> for AddrAddr[src]

fn eq(&self, other: &AddrAddr) -> bool[src]

Address equality delegates to usize equality

fn ne(&self, other: &AddrAddr) -> bool[src]

Address inequality delegates to usize equality

impl PartialOrd<AddrAddr> for AddrAddr[src]

fn partial_cmp(&self, other: &AddrAddr) -> Option<Ordering>[src]

Address ordinality delegates to usize ordinality.

impl Pointer for AddrAddr[src]

fn fmt(&self, f: &mut Formatter) -> Result[src]

Display this address as a prettified alphanumeric hex string.

impl StructuralEq for AddrAddr[src]

impl UpperHex for AddrAddr[src]

fn fmt(&self, f: &mut Formatter) -> Result[src]

Format this address as an alphanumeric hex string.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.