[][src]Struct rtfm_syntax::ast::HardwareTask

pub struct HardwareTask {
    pub args: HardwareTaskArgs,
    pub attrs: Vec<Attribute>,
    pub context: Box<Pat>,
    pub locals: Map<Local>,
    pub stmts: Vec<Stmt>,
    // some fields omitted
}

A hardware task

Fields

args: HardwareTaskArgs

Hardware task metadata

attrs: Vec<Attribute>

Attributes that will apply to this interrupt handler

context: Box<Pat>

The context argument

locals: Map<Local>

Static variables local to this context

stmts: Vec<Stmt>

The statements that make up the task handler

Trait Implementations

impl Debug for HardwareTask[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, 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]