nrf-pac

Crates

git

Versions

nrf52833

Flavors

nrf_pac::power::vals

Enum Thresholdvddh

Source
#[repr(u8)]
pub enum Thresholdvddh {
Show 16 variants V27 = 0, V28 = 1, V29 = 2, V30 = 3, V31 = 4, V32 = 5, V33 = 6, V34 = 7, V35 = 8, V36 = 9, V37 = 10, V38 = 11, V39 = 12, V40 = 13, V41 = 14, V42 = 15,
}

Variants§

§

V27 = 0

Set threshold to 2.7 V

§

V28 = 1

Set threshold to 2.8 V

§

V29 = 2

Set threshold to 2.9 V

§

V30 = 3

Set threshold to 3.0 V

§

V31 = 4

Set threshold to 3.1 V

§

V32 = 5

Set threshold to 3.2 V

§

V33 = 6

Set threshold to 3.3 V

§

V34 = 7

Set threshold to 3.4 V

§

V35 = 8

Set threshold to 3.5 V

§

V36 = 9

Set threshold to 3.6 V

§

V37 = 10

Set threshold to 3.7 V

§

V38 = 11

Set threshold to 3.8 V

§

V39 = 12

Set threshold to 3.9 V

§

V40 = 13

Set threshold to 4.0 V

§

V41 = 14

Set threshold to 4.1 V

§

V42 = 15

Set threshold to 4.2 V

Implementations§

Source§

impl Thresholdvddh

Source

pub const fn from_bits(val: u8) -> Thresholdvddh

Source

pub const fn to_bits(self) -> u8

Trait Implementations§

Source§

impl Clone for Thresholdvddh

Source§

fn clone(&self) -> Thresholdvddh

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl From<Thresholdvddh> for u8

Source§

fn from(val: Thresholdvddh) -> u8

Converts to this type from the input type.
Source§

impl From<u8> for Thresholdvddh

Source§

fn from(val: u8) -> Thresholdvddh

Converts to this type from the input type.
Source§

impl Ord for Thresholdvddh

Source§

fn cmp(&self, other: &Thresholdvddh) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Thresholdvddh

Source§

fn eq(&self, other: &Thresholdvddh) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Thresholdvddh

Source§

fn partial_cmp(&self, other: &Thresholdvddh) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Copy for Thresholdvddh

Source§

impl Eq for Thresholdvddh

Source§

impl StructuralPartialEq for Thresholdvddh

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.