#[non_exhaustive]
pub struct AddressBlock { pub offset: u32, pub size: u32, pub usage: AddressBlockUsage, pub protection: Option<Protection>, }
Expand description

An uniquely mapped address block to a peripheral

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
offset: u32

Specifies the start address of an address block relative to the peripheral baseAddress.

size: u32

Specifies the number of addressUnitBits being covered by this address block.

usage: AddressBlockUsage

Usage of the address block.

protection: Option<Protection>

Specify the security privilege to access an address region

Implementations

Make a builder for AddressBlock

Modify an existing AddressBlock based on a builder.

Validate the AddressBlock.

Notes

This doesn’t do anything.

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

Converts to this type from the input type.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. 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.