[][src]Struct rtfm_syntax::Settings

pub struct Settings {
    pub parse_binds: bool,
    pub parse_cores: bool,
    pub parse_extern_interrupt: bool,
    pub parse_schedule: bool,
    pub optimize_priorities: bool,
    // some fields omitted
}

Parser and optimizer configuration

Fields

parse_binds: bool

Whether to accept the binds argument in #[task] or not

parse_cores: bool

Whether to accept the cores, core and late arguments or not

parse_extern_interrupt: bool

Whether to parse extern interrupts (functions) or not

parse_schedule: bool

Whether to accept the schedule argument or not

optimize_priorities: bool

Whether to "compress" priorities or not

Trait Implementations

impl Default for Settings[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]