Struct rtic_syntax::ast::AppArgs[][src]

pub struct AppArgs {
    pub device: Option<Path>,
    pub peripherals: bool,
    pub extern_interrupts: ExternInterrupts,
}

The arguments of the #[app] attribute

Fields

device: Option<Path>

Device

peripherals: bool

Peripherals

extern_interrupts: ExternInterrupts

Interrupts used to dispatch software tasks

Trait Implementations

impl Debug for AppArgs[src]

Auto Trait Implementations

impl !RefUnwindSafe for AppArgs

impl !Send for AppArgs

impl !Sync for AppArgs

impl Unpin for AppArgs

impl UnwindSafe for AppArgs

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.