#[repr(C, align(32))]pub struct DmaControlBlock {
pub ti: u32,
pub source_ad: u32,
pub dest_ad: u32,
pub txfr_len: u32,
pub stride: u32,
pub nextconbk: u32,
pub _reserved: [u32; 2],
}Fields§
§ti: u32§source_ad: u32§dest_ad: u32§txfr_len: u32§stride: u32§nextconbk: u32§_reserved: [u32; 2]Trait Implementations§
Source§impl Clone for DmaControlBlock
impl Clone for DmaControlBlock
Source§fn clone(&self) -> DmaControlBlock
fn clone(&self) -> DmaControlBlock
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DmaControlBlock
Auto Trait Implementations§
impl Freeze for DmaControlBlock
impl RefUnwindSafe for DmaControlBlock
impl Send for DmaControlBlock
impl Sync for DmaControlBlock
impl Unpin for DmaControlBlock
impl UnsafeUnpin for DmaControlBlock
impl UnwindSafe for DmaControlBlock
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