pub struct Sysctl {
pub power_control: PowerControl,
pub clock_setup: ClockSetup,
}Expand description
Constrained SYSCTL peripheral.
Fields§
§power_control: PowerControlPower control methods will require &mut this.power_control to
prevent them from running concurrently.
clock_setup: ClockSetupClock configuration will consume this and give you Clocks.
Auto Trait Implementations§
impl Freeze for Sysctl
impl RefUnwindSafe for Sysctl
impl Send for Sysctl
impl Sync for Sysctl
impl Unpin for Sysctl
impl UnwindSafe for Sysctl
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