Enum embassy_stm32::dac::Value
source · pub enum Value {
Bit8(u8),
Bit12Left(u16),
Bit12Right(u16),
}
Expand description
Single 8 or 12 bit value that can be output by the DAC.
12-bit values outside the permitted range are silently truncated.
Variants§
Bit8(u8)
8 bit value
Bit12Left(u16)
12 bit value stored in a u16, left-aligned
Bit12Right(u16)
12 bit value stored in a u16, right-aligned
Trait Implementations§
source§impl PartialEq for Value
impl PartialEq for Value
impl Copy for Value
impl Eq for Value
impl StructuralEq for Value
impl StructuralPartialEq for Value
Auto Trait Implementations§
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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