pub enum DisabledOptions {
Show 16 variants
NoMul,
NoJmp,
NoXreg,
NoYreg,
Tiny1x,
NoLpm,
NoLpmX,
NoElpm,
NoElpmX,
NoSpm,
NoEspm,
NoMovw,
NoBreak,
NoEicall,
NoEijmp,
Avr8l,
}Variants§
NoMul
NoJmp
No JMP, CALL
NoXreg
No X register
NoYreg
No Y register
Tiny1x
AT90S1200, ATtiny10-12, no ADIW, SBIW, IJMP, ICALL, LDD, STD, LDS, STS, PUSH, POP
NoLpm
No LPM instruction
NoLpmX
No LPM Rd, Z or LPM Rd, Z+ instruction
NoElpm
No ELPM instruction
NoElpmX
No ELPM Rd, Z or ELPM Rd, Z+ instruction
NoSpm
No SPM instruction
NoEspm
No ESPM instruction
NoMovw
No MOVW instruction
NoBreak
No BREAK instruction
NoEicall
No EICALL instruction
NoEijmp
No EIJMP instruction
Avr8l
ATtiny10, 20, 40 no ADIW, SBIW, one word LDS/STS
Trait Implementations§
Source§impl Clone for DisabledOptions
impl Clone for DisabledOptions
Source§fn clone(&self) -> DisabledOptions
fn clone(&self) -> DisabledOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DisabledOptions
impl Debug for DisabledOptions
Source§impl Ord for DisabledOptions
impl Ord for DisabledOptions
Source§fn cmp(&self, other: &DisabledOptions) -> Ordering
fn cmp(&self, other: &DisabledOptions) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DisabledOptions
impl PartialEq for DisabledOptions
Source§impl PartialOrd for DisabledOptions
impl PartialOrd for DisabledOptions
impl Eq for DisabledOptions
impl StructuralPartialEq for DisabledOptions
Auto Trait Implementations§
impl Freeze for DisabledOptions
impl RefUnwindSafe for DisabledOptions
impl Send for DisabledOptions
impl Sync for DisabledOptions
impl Unpin for DisabledOptions
impl UnwindSafe for DisabledOptions
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