#[repr(u8)]
pub enum TASK_PENDING_A {
NOT_FINISHED,
FINISHED,
}
Expand description
Task Channel 3-0 End Pending
It indicates whether task is completed.
Write the corresponding channel bit of the register to clear the end flag.
Value on reset: 0
Variants
NOT_FINISHED
0: Task not finished
FINISHED
1: Task finished
Trait Implementations
sourceimpl Clone for TASK_PENDING_A
impl Clone for TASK_PENDING_A
sourcefn clone(&self) -> TASK_PENDING_A
fn clone(&self) -> TASK_PENDING_A
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TASK_PENDING_A
impl Debug for TASK_PENDING_A
sourceimpl From<TASK_PENDING_A> for u8
impl From<TASK_PENDING_A> for u8
sourcefn from(variant: TASK_PENDING_A) -> Self
fn from(variant: TASK_PENDING_A) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<TASK_PENDING_A> for TASK_PENDING_A
impl PartialEq<TASK_PENDING_A> for TASK_PENDING_A
impl Copy for TASK_PENDING_A
impl StructuralPartialEq for TASK_PENDING_A
Auto Trait Implementations
impl RefUnwindSafe for TASK_PENDING_A
impl Send for TASK_PENDING_A
impl Sync for TASK_PENDING_A
impl Unpin for TASK_PENDING_A
impl UnwindSafe for TASK_PENDING_A
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more