pub struct Settings {
pub parse_binds: bool,
pub parse_cores: bool,
pub parse_extern_interrupt: bool,
pub parse_schedule: bool,
pub optimize_priorities: bool,
/* private fields */
}
Expand description
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§
Auto Trait Implementations§
impl Freeze for Settings
impl RefUnwindSafe for Settings
impl Send for Settings
impl Sync for Settings
impl Unpin for Settings
impl UnwindSafe for Settings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more