pub struct BackdoorTargetInfo {
pub id: u32,
pub width: u32,
pub depth: u32,
}Expand description
Information about a specific backdoor target, e.g. OTP, ROM, FB0, SRAM.
Fields§
§id: u32The unique identifier of the backdoor target
width: u32The word width of the memory of the backdoor target.
depth: u32The depth (number of words) of the memory of the backdoor target.
Implementations§
Trait Implementations§
Source§impl Clone for BackdoorTargetInfo
impl Clone for BackdoorTargetInfo
Source§fn clone(&self) -> BackdoorTargetInfo
fn clone(&self) -> BackdoorTargetInfo
Returns a duplicate 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 BackdoorTargetInfo
impl Debug for BackdoorTargetInfo
Source§impl Display for BackdoorTargetInfo
impl Display for BackdoorTargetInfo
Source§impl Serialize for BackdoorTargetInfo
impl Serialize for BackdoorTargetInfo
impl Copy for BackdoorTargetInfo
Auto Trait Implementations§
impl Freeze for BackdoorTargetInfo
impl RefUnwindSafe for BackdoorTargetInfo
impl Send for BackdoorTargetInfo
impl Sync for BackdoorTargetInfo
impl Unpin for BackdoorTargetInfo
impl UnwindSafe for BackdoorTargetInfo
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