Struct drivers::dmac::descriptor::Descriptor
source · #[repr(C, align(4))]pub struct Descriptor {
configuration: u32,
source_address: u32,
destination_address: u32,
byte_counter: u32,
parameter: u32,
link: u32,
}
Fields§
§configuration: u32
§source_address: u32
§destination_address: u32
§byte_counter: u32
§parameter: u32
§link: u32
Implementations§
Trait Implementations§
source§impl Clone for Descriptor
impl Clone for Descriptor
source§fn clone(&self) -> Descriptor
fn clone(&self) -> Descriptor
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for Descriptor
impl Debug for Descriptor
source§impl TryFrom<DescriptorConfig> for Descriptor
impl TryFrom<DescriptorConfig> for Descriptor
Auto Trait Implementations§
impl RefUnwindSafe for Descriptor
impl Send for Descriptor
impl Sync for Descriptor
impl Unpin for Descriptor
impl UnwindSafe for Descriptor
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