#[non_exhaustive]
pub struct PeripheralInfo {
Show 15 fields pub name: String, pub display_name: Option<String>, pub version: Option<String>, pub description: Option<String>, pub alternate_peripheral: Option<String>, pub group_name: Option<String>, pub prepend_to_name: Option<String>, pub append_to_name: Option<String>, pub header_struct_name: Option<String>, pub base_address: u64, pub default_register_properties: RegisterProperties, pub address_block: Option<Vec<AddressBlock>>, pub interrupt: Vec<Interrupt>, pub registers: Option<Vec<RegisterCluster>>, pub derived_from: Option<String>,
}
Expand description

A description of a peripheral in the device, describing, for example, the memory mappings.

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.
§name: String

The string identifies the peripheral. Peripheral names are required to be unique for a device

§display_name: Option<String>

Specifies a register name without the restrictions of an ANSI C identifier.

§version: Option<String>

The string specifies the version of this peripheral description

§description: Option<String>

The string provides an overview of the purpose and functionality of the peripheral

§alternate_peripheral: Option<String>

Specifies peripheral assigned to the same address blocks

§group_name: Option<String>

Assigns this peripheral to a group of peripherals. This is only used bye the System View

§prepend_to_name: Option<String>

Define a string as prefix. All register names of this peripheral get this prefix

§append_to_name: Option<String>

Define a string as suffix. All register names of this peripheral get this suffix

§header_struct_name: Option<String>

Specify the struct type name created in the device header file

§base_address: u64

Lowest address reserved or used by the peripheral

§default_register_properties: RegisterProperties

Default properties for all registers

§address_block: Option<Vec<AddressBlock>>

Specify an address range uniquely mapped to this peripheral

§interrupt: Vec<Interrupt>

A peripheral can have multiple associated interrupts

§registers: Option<Vec<RegisterCluster>>

Group to enclose register definitions. None indicates that the <registers> node is not present

§derived_from: Option<String>

Specify the peripheral name from which to inherit data. Elements specified subsequently override inherited values

Implementations§

source§

impl PeripheralInfo

source

pub fn builder() -> PeripheralInfoBuilder

Make a builder for PeripheralInfo

source

pub const fn single(self) -> Peripheral

Construct single Peripheral

source

pub const fn array(self, dim: DimElement) -> Peripheral

Construct Peripheral array

source

pub fn maybe_array(self, dim: Option<DimElement>) -> Peripheral

Construct single Peripheral or array

source

pub fn modify_from( &mut self, builder: PeripheralInfoBuilder, lvl: ValidateLevel ) -> Result<(), SvdError>

Modify an existing Peripheral based on a builder.

source

pub fn validate(&self, lvl: ValidateLevel) -> Result<(), SvdError>

Validate the PeripheralInfo

source

pub fn validate_all(&self, lvl: ValidateLevel) -> Result<(), SvdError>

Validate the PeripheralInfo recursively

source

pub fn registers(&self) -> RegisterIter<'_>

Returns iterator over child registers

source

pub fn registers_mut(&mut self) -> RegisterIterMut<'_>

Returns mutable iterator over child registers

source

pub fn clusters(&self) -> ClusterIter<'_>

Returns iterator over child clusters

source

pub fn clusters_mut(&mut self) -> ClusterIterMut<'_>

Returns mutable iterator over child clusters

source

pub fn reg_iter(&self) -> AllRegistersIter<'_>

👎Deprecated since 0.12.1: Please use all_registers instead

Returns iterator over all descendant registers

source

pub fn all_registers(&self) -> AllRegistersIter<'_>

Returns iterator over all descendant registers

source

pub fn reg_iter_mut(&mut self) -> AllRegistersIterMut<'_>

👎Deprecated since 0.12.1: Please use all_registers_mut instead

Returns mutable iterator over all descendant registers

source

pub fn all_registers_mut(&mut self) -> AllRegistersIterMut<'_>

Returns mutable iterator over all descendant registers

source

pub fn get_register(&self, name: &str) -> Option<&Register>

Get register by name

source

pub fn get_mut_register(&mut self, name: &str) -> Option<&mut Register>

Get mutable register by name

source

pub fn get_cluster(&self, name: &str) -> Option<&Cluster>

Get cluster by name

source

pub fn get_mut_cluster(&mut self, name: &str) -> Option<&mut Cluster>

Get mutable cluster by name

source

pub fn get_interrupt(&self, name: &str) -> Option<&Interrupt>

Get interrupt by name

source

pub fn get_mut_interrupt(&mut self, name: &str) -> Option<&mut Interrupt>

Get mutable enumeratedValue by name

Trait Implementations§

source§

impl Clone for PeripheralInfo

source§

fn clone(&self) -> PeripheralInfo

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for PeripheralInfo

source§

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

Formats the value using the given formatter. Read more
source§

impl Description for PeripheralInfo

source§

fn description(&self) -> Option<&str>

Get description
source§

impl From<PeripheralInfo> for PeripheralInfoBuilder

source§

fn from(p: PeripheralInfo) -> Self

Converts to this type from the input type.
source§

impl Name for PeripheralInfo

source§

fn name(&self) -> &str

Get name
source§

impl PartialEq for PeripheralInfo

source§

fn eq(&self, other: &PeripheralInfo) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for PeripheralInfo

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.