Struct voladdress::VolSeries[][src]

#[repr(transparent)]
pub struct VolSeries<T, R, W, const C: usize, const S: usize> { /* fields omitted */ }
Expand description

A volatile memory “series”.

This is intended to model when a portion of memory is a series of evenly spaced values that are not directly contiguous.

Generic Parameters

  • T / R / W: These parameters are applied to the VolAddress type returned when accessing the series in any way (indexing, iteration, etc).
  • C: the count of elements in the series.
  • S: the stride in bytes between series elements.

Safety

  • This type stores a VolAddress internally, and so you must follow all of those safety rules. Notably, the base address must never be zero.
  • The address space must legally contain C values of the T type, spaced every S bytes, starting from the base address.
  • The memory series must not wrap around the end of the address space.

Implementations

Constructs the value.

Safety

  • As per the type docs.

The length of this series (in elements).

The stride of this series (in bytes).

Indexes to the ith position of the memory series.

Panics

  • If the index is out of bounds this will panic.

Gets the address of the ith position, if it’s in bounds.

Creates an iterator over the addresses of the memory series.

Makes an iterator over the range bounds given.

If the range given is empty then your iterator will be empty.

Panics

  • If the start or end of the range are out of bounds for the series.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

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 !=.

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

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

Performs the conversion.

Performs the conversion.

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.