[][src]Struct rtfm_syntax::ast::App

pub struct App {
    pub args: AppArgs,
    pub name: Ident,
    pub inits: Inits,
    pub idles: Idles,
    pub late_resources: Map<LateResource>,
    pub resources: Map<Resource>,
    pub hardware_tasks: Map<HardwareTask>,
    pub software_tasks: Map<SoftwareTask>,
    pub extern_interrupts: ExternInterrupts,
    // some fields omitted
}

The #[app] attribute

Fields

args: AppArgs

The arguments to the #[app] attribute

name: Ident

The name of the const item on which the #[app] attribute has been placed

inits: Inits

Per-core #[init] functions

idles: Idles

Per-core #[idle] functions

late_resources: Map<LateResource>

Late (runtime initialized) resources

resources: Map<Resource>

Early (compile time initialized) resources

hardware_tasks: Map<HardwareTask>

Hardware tasks: #[task(binds = ..)]s

software_tasks: Map<SoftwareTask>

Software tasks: #[task]

extern_interrupts: ExternInterrupts

Interrupts used to dispatch software tasks

Methods

impl App[src]

pub fn uses_schedule(&self, core: u8) -> bool[src]

Whether this core uses the schedule API

pub fn resource(&self, name: &Ident) -> Option<(&LateResource, Option<&Expr>)>[src]

Returns information about the resource that matches name

pub fn resources<'a>(
    &'a self,
    analysis: &'a Analysis
) -> impl Iterator<Item = (&'a Ident, &'a LateResource, Option<&'a Expr>, &'a Location)>
[src]

Returns an iterator over all live resources

pub fn schedule_callers<'a>(
    &'a self
) -> impl Iterator<Item = (Context<'a>, &'a Set<Ident>)>
[src]

Iterates over all spawn callers

pub fn spawn_callers<'a>(
    &'a self
) -> impl Iterator<Item = (Context<'a>, &'a Set<Ident>)>
[src]

Iterates over all spawn callers

Trait Implementations

impl Debug for App[src]

Auto Trait Implementations

impl !Send for App

impl Unpin for App

impl !Sync for App

impl !UnwindSafe for App

impl !RefUnwindSafe for App

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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