pub struct Cr { /* private fields */ }
Expand description
Control register.
Implementations§
Source§impl Cr
impl Cr
Sourcepub const fn set_en(self, en: bool) -> Self
pub const fn set_en(self, en: bool) -> Self
Set the CEC peripheral enable.
§Example
use stm32_cec::Cr;
let cr: Cr = Cr::DEFAULT;
assert_eq!(cr.en(), false);
let cr: Cr = cr.set_en(true);
assert_eq!(cr.en(), true);
let cr: Cr = cr.set_en(false);
assert_eq!(cr.en(), false);
pub const fn txsom(&self) -> bool
pub const fn set_txsom(self) -> Self
pub const fn txeom(&self) -> bool
pub const fn set_txeom(self) -> Self
Trait Implementations§
impl Copy for Cr
impl Eq for Cr
impl StructuralPartialEq for Cr
Auto Trait Implementations§
impl Freeze for Cr
impl RefUnwindSafe for Cr
impl Send for Cr
impl Sync for Cr
impl Unpin for Cr
impl UnwindSafe for Cr
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