Struct pelite::pe64::Ptr

source ·
pub struct Ptr<T: ?Sized = ()>(_, _);
Expand description

Typed virtual address.

Implementations

Creates a null pointer.

Returns true if the pointer is null.

Casts the pointer to a different type keeping the pointer address fixed.

Offset and cast the pointer.

Access nearby values (such as data members) by offsetting and casting the pointer.

Because the type of the current and the target may be unrelated, this is a byte offset.

Examples
use pelite::pe64::Ptr;

#[repr(C)]
struct Composite {
	int: i32,
	float: f32,
}

let p: Ptr<Composite> = Ptr::from(0x2000);
let target: Ptr<f32> = p.shift(4);

assert_eq!(target, Ptr::from(0x2004));

Simply formats the pointer.

Examples
use std::str;
use pelite::pe32::Ptr;

let p: Ptr<i32> = Ptr::from(0x1f00);
let fmts = p.fmt();

// Guaranteed to be safe
let s = unsafe { str::from_utf8_unchecked(&fmts) };
assert_eq!(s, "0x00001f00");

Trait Implementations

The resulting type after applying the + operator.
Performs the + operation. Read more
The resulting type after applying the + operator.
Performs the + operation. Read more
Converts this type into a mutable reference of the (usually inferred) input type.
Converts this type into a shared reference of the (usually inferred) input type.
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.
Converts to this type from the input type.
This method returns an Ordering between self and other. Read more
Compares and returns the maximum of two values. Read more
Compares and returns the minimum of two values. Read more
Restrict a value to a certain interval. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Serialize this value into the given Serde serializer. Read more
The resulting type after applying the - operator.
Performs the - operation. Read more
The resulting type after applying the - operator.
Performs the - operation. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.