[][src]Struct avr_mcu::AddressSpace

pub struct AddressSpace {
    pub id: String,
    pub name: String,
    pub start_address: u32,
    pub size: u32,
    pub segments: Vec<MemorySegment>,
}

An address space.

Fields

id: String

The identifier.

name: String

The name.

start_address: u32

The starting memory address of the address space.

size: u32

The number of bytes in the address space.

segments: Vec<MemorySegment>

What segments are in the address space.

Trait Implementations

impl Clone for AddressSpace[src]

impl Debug for AddressSpace[src]

impl Eq for AddressSpace[src]

impl Hash for AddressSpace[src]

impl PartialEq<AddressSpace> for AddressSpace[src]

impl PartialOrd<AddressSpace> for AddressSpace[src]

impl StructuralEq for AddressSpace[src]

impl StructuralPartialEq for AddressSpace[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.