[][src]Struct svd_parser::svd::fieldinfo::FieldInfo

pub struct FieldInfo {
    pub name: String,
    pub derived_from: Option<String>,
    pub description: Option<String>,
    pub bit_range: BitRange,
    pub access: Option<Access>,
    pub enumerated_values: Vec<EnumeratedValues>,
    pub write_constraint: Option<WriteConstraint>,
    pub modified_write_values: Option<ModifiedWriteValues>,
    // some fields omitted
}

Fields

name: Stringderived_from: Option<String>description: Option<String>bit_range: BitRangeaccess: Option<Access>enumerated_values: Vec<EnumeratedValues>write_constraint: Option<WriteConstraint>modified_write_values: Option<ModifiedWriteValues>

Trait Implementations

impl Parse for FieldInfo[src]

type Object = FieldInfo

Object returned by parse method

type Error = Error

Parsing error

impl Clone for FieldInfo[src]

impl PartialEq<FieldInfo> for FieldInfo[src]

impl Debug for FieldInfo[src]

impl StructuralPartialEq for FieldInfo[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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