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: boolWhether to accept the binds argument in #[task] or not
parse_cores: boolWhether to accept the cores, core and late arguments or not
parse_extern_interrupt: boolWhether to parse extern interrupts (functions) or not
parse_schedule: boolWhether to accept the schedule argument or not
optimize_priorities: boolWhether 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