pub struct AhbClk<A: AhbId> { /* private fields */ }Expand description
An enabled AHB clock
An AhbClk represents an enabled AHB clock. The type parameter A is an
AhbId, which corresponds to a particular bit in the AHBMASK
register. An AhbClk can be disabled with the Ahb::disable method.
Auto Trait Implementations§
impl<A> Freeze for AhbClk<A>
impl<A> RefUnwindSafe for AhbClk<A>where
A: RefUnwindSafe,
impl<A> Send for AhbClk<A>where
A: Send,
impl<A> Sync for AhbClk<A>where
A: Sync,
impl<A> Unpin for AhbClk<A>where
A: Unpin,
impl<A> UnwindSafe for AhbClk<A>where
A: UnwindSafe,
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