#[repr(u8)]pub enum DisablePulseSkip {
IDLE = 0,
NOT_IDLE = 1,
}Variants§
IDLE = 0
DCDC will be idle to save current dissipation when the duty cycle get to the low limit which is set by NEGLIMIT_IN.
NOT_IDLE = 1
DCDC will keep working with the low limited duty cycle NEGLIMIT_IN.
Implementations§
Trait Implementations§
Source§impl Clone for DisablePulseSkip
impl Clone for DisablePulseSkip
Source§fn clone(&self) -> DisablePulseSkip
fn clone(&self) -> DisablePulseSkip
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 DisablePulseSkip
impl Debug for DisablePulseSkip
Source§impl From<DisablePulseSkip> for u8
impl From<DisablePulseSkip> for u8
Source§fn from(val: DisablePulseSkip) -> u8
fn from(val: DisablePulseSkip) -> u8
Converts to this type from the input type.
Source§impl From<u8> for DisablePulseSkip
impl From<u8> for DisablePulseSkip
Source§fn from(val: u8) -> DisablePulseSkip
fn from(val: u8) -> DisablePulseSkip
Converts to this type from the input type.
Source§impl Ord for DisablePulseSkip
impl Ord for DisablePulseSkip
Source§fn cmp(&self, other: &DisablePulseSkip) -> Ordering
fn cmp(&self, other: &DisablePulseSkip) -> 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 DisablePulseSkip
impl PartialEq for DisablePulseSkip
Source§impl PartialOrd for DisablePulseSkip
impl PartialOrd for DisablePulseSkip
impl Copy for DisablePulseSkip
impl Eq for DisablePulseSkip
impl StructuralPartialEq for DisablePulseSkip
Auto Trait Implementations§
impl Freeze for DisablePulseSkip
impl RefUnwindSafe for DisablePulseSkip
impl Send for DisablePulseSkip
impl Sync for DisablePulseSkip
impl Unpin for DisablePulseSkip
impl UnwindSafe for DisablePulseSkip
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