Struct avr_mcu::MemorySegment [] [src]

pub struct MemorySegment {
    pub start_address: u32,
    pub size: u32,
    pub ty: String,
    pub readable: bool,
    pub writable: bool,
    pub executable: bool,
    pub name: String,
    pub page_size: Option<u32>,
}

A segment of memory in a particular address space.

Fields

Whether the segment can be read from.

Whether the segment can be written to.

Whether the segment can be executed.

Trait Implementations

impl Clone for MemorySegment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MemorySegment
[src]

Formats the value using the given formatter.

impl PartialOrd for MemorySegment
[src]

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

impl PartialEq for MemorySegment
[src]

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

This method tests for !=.