pub struct Write {
pub width: Width,
pub op: WriteOp,
pub address: u32,
pub value: u32,
}Expand description
DCD command for writing a value to an address.
Fields§
§width: WidthWidth of the bus write.
op: WriteOpWriting operation — see WriteOp.
address: u32Address to be written to. Note that the ROM may enforce valid address ranges.
value: u32Trait Implementations§
source§impl PartialEq<Write> for Write
impl PartialEq<Write> for Write
impl Eq for Write
impl StructuralEq for Write
impl StructuralPartialEq for Write
Auto Trait Implementations§
impl RefUnwindSafe for Write
impl Send for Write
impl Sync for Write
impl Unpin for Write
impl UnwindSafe for Write
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