Struct avr_mcu::Variant [] [src]

pub struct Variant {
    pub name: String,
    pub pinout: Option<String>,
    pub package: String,
    pub temperature_min: i32,
    pub temperature_max: i32,
    pub voltage_min: f32,
    pub voltage_max: f32,
    pub speed_max_hz: u64,
}

A variation of a specific microcontroller.

Fields

The name of the variant.

What pinout is used.

The package format.

The minimum temperate in celsius.

The maximum temperature in celsius.

The minimum voltage.

The maximum voltate.

The max clock speed in Hz.

Trait Implementations

impl Clone for Variant
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Variant
[src]

Formats the value using the given formatter.

impl PartialOrd for Variant
[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 Variant
[src]

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

This method tests for !=.