Struct patch_svd::output::Cpu[][src]

pub struct Cpu {
    pub name: String,
    pub revision: String,
    pub endian: EndianType,
    pub mpu_present: bool,
    pub fpu_present: bool,
    pub fpu_d_p: Option<bool>,
    pub dsp_present: Option<bool>,
    pub icache_present: Option<bool>,
    pub dcache_present: Option<bool>,
    pub itcm_present: Option<bool>,
    pub dtcm_present: Option<bool>,
    pub vtor_present: Option<bool>,
    pub nvic_prio_bits: SvdConstant,
    pub vendor_systick_config: bool,
    pub device_num_interrupts: Option<SvdConstant>,
    pub sau_num_regions: Option<SvdConstant>,
    pub sau_regions_config: Option<SauRegionsConfigType>,
}

Fields

name: Stringrevision: Stringendian: EndianTypempu_present: boolfpu_present: boolfpu_d_p: Option<bool>dsp_present: Option<bool>icache_present: Option<bool>dcache_present: Option<bool>itcm_present: Option<bool>dtcm_present: Option<bool>vtor_present: Option<bool>nvic_prio_bits: SvdConstantvendor_systick_config: booldevice_num_interrupts: Option<SvdConstant>sau_num_regions: Option<SvdConstant>sau_regions_config: Option<SauRegionsConfigType>

Trait Implementations

impl Clone for Cpu[src]

impl Debug for Cpu[src]

impl<'de> Deserialize<'de> for Cpu[src]

impl Eq for Cpu[src]

impl PartialEq<Cpu> for Cpu[src]

impl StructuralEq for Cpu[src]

impl StructuralPartialEq for Cpu[src]

Auto Trait Implementations

impl RefUnwindSafe for Cpu

impl Send for Cpu

impl Sync for Cpu

impl Unpin for Cpu

impl UnwindSafe for Cpu

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.