#[repr(u32)]pub enum AssertAction {
AsmWarn = 0,
AsmError = 1,
LinkWarn = 2,
LinkError = 3,
Unknown(u32),
}Variants§
AsmWarn = 0
warn at assemble-time.
AsmError = 1
error at assemble-time.
LinkWarn = 2
warn at link-time.
LinkError = 3
error at link-time.
Unknown(u32)
Trait Implementations§
Source§impl Clone for AssertAction
impl Clone for AssertAction
Source§fn clone(&self) -> AssertAction
fn clone(&self) -> AssertAction
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 AssertAction
impl Debug for AssertAction
Source§impl PartialEq for AssertAction
impl PartialEq for AssertAction
impl Copy for AssertAction
impl Eq for AssertAction
impl StructuralPartialEq for AssertAction
Auto Trait Implementations§
impl Freeze for AssertAction
impl RefUnwindSafe for AssertAction
impl Send for AssertAction
impl Sync for AssertAction
impl Unpin for AssertAction
impl UnwindSafe for AssertAction
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