pub struct Target {
    pub name: String,
    pub cores: Vec<Core>,
    pub flash_algorithms: Vec<RawFlashAlgorithm>,
    pub memory_map: Vec<MemoryRegion>,
    pub debug_sequence: DebugSequence,
    /* private fields */
}
Expand description

This describes a complete target with a fixed chip model and variant.

Fields

name: String

The name of the target.

cores: Vec<Core>

The cores of the target.

flash_algorithms: Vec<RawFlashAlgorithm>

The name of the flash algorithm.

memory_map: Vec<MemoryRegion>

The memory map of the target.

debug_sequence: DebugSequence

Debug sequences for the given target.

Implementations

Get the architecture of the target

Source description of this target.

Create a FlashLoader for this target, which can be used to program its non-volatile memory.

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.

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

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.