Trait gstd::prelude::fmt::Pointer

1.0.0 · source ·
pub trait Pointer {
    // Required method
    fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>;
}
Expand description

p formatting.

The Pointer trait should format its output as a memory location. This is commonly presented as hexadecimal.

For more information on formatters, see the module-level documentation.

§Examples

Basic usage with &i32:

let x = &42;

let address = format!("{x:p}"); // this produces something like '0x7f06092ac6d0'

Implementing Pointer on a type:

use std::fmt;

struct Length(i32);

impl fmt::Pointer for Length {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        // use `as` to convert to a `*const T`, which implements Pointer, which we can use

        let ptr = self as *const Self;
        fmt::Pointer::fmt(&ptr, f)
    }
}

let l = Length(42);

println!("l is in memory here: {l:p}");

let l_ptr = format!("{l:018p}");
assert_eq!(l_ptr.len(), 18);
assert_eq!(&l_ptr[..2], "0x");

Required Methods§

source

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter.

Implementors§

1.4.0 · source§

impl<F> Pointer for F
where F: FnPtr,

§

impl<M, T> Pointer for Address<M, T>
where M: Mutability, T: ?Sized,

§

impl<M, T, O> Pointer for BitPtr<M, T, O>
where M: Mutability, T: BitStore, O: BitOrder,

§

impl<M, T, O> Pointer for BitRef<'_, M, T, O>
where M: Mutability, T: BitStore, O: BitOrder,

1.33.0 · source§

impl<Ptr> Pointer for Pin<Ptr>
where Ptr: Pointer,

source§

impl<T> Pointer for *const T
where T: ?Sized,

source§

impl<T> Pointer for *mut T
where T: ?Sized,

source§

impl<T> Pointer for &T
where T: ?Sized,

source§

impl<T> Pointer for &mut T
where T: ?Sized,

1.25.0 · source§

impl<T> Pointer for NonNull<T>
where T: ?Sized,

1.24.0 · source§

impl<T> Pointer for AtomicPtr<T>

§

impl<T> Pointer for FmtBinary<T>
where T: Binary + Pointer,

§

impl<T> Pointer for FmtDisplay<T>
where T: Display + Pointer,

§

impl<T> Pointer for FmtLowerExp<T>
where T: LowerExp + Pointer,

§

impl<T> Pointer for FmtLowerHex<T>
where T: LowerHex + Pointer,

§

impl<T> Pointer for FmtOctal<T>
where T: Octal + Pointer,

§

impl<T> Pointer for FmtPointer<T>
where T: Pointer,

§

impl<T> Pointer for FmtUpperExp<T>
where T: UpperExp + Pointer,

§

impl<T> Pointer for FmtUpperHex<T>
where T: UpperHex + Pointer,

source§

impl<T, A> Pointer for Rc<T, A>
where A: Allocator, T: ?Sized,

source§

impl<T, A> Pointer for gstd::prelude::Box<T, A>
where A: Allocator, T: ?Sized,

source§

impl<T, A> Pointer for Arc<T, A>
where A: Allocator, T: ?Sized,

§

impl<T, A> Pointer for Box<T, A>
where A: Allocator, T: ?Sized,

§

impl<T, O> Pointer for BitBox<T, O>
where O: BitOrder, T: BitStore,

§

impl<T, O> Pointer for BitSlice<T, O>
where T: BitStore, O: BitOrder,

§

impl<T, O> Pointer for BitVec<T, O>
where O: BitOrder, T: BitStore,