Enum probe_rs::architecture::arm::ApInformation
source · [−]pub enum ApInformation {
MemoryAp(MemoryApInformation),
Other {
address: ApAddress,
},
}
Expand description
Information about an access port. Can be used for target discovery.
Variants
MemoryAp(MemoryApInformation)
Information about a Memory AP, which allows access to target memory. See Chapter C2 in the ARM Debug Interface Architecture Specification.
Other
Fields
address: ApAddress
Zero-based port number of the access port. This is used in the debug port to select an AP.
Information about an AP with an unknown class.
Trait Implementations
sourceimpl Clone for ApInformation
impl Clone for ApInformation
sourcefn clone(&self) -> ApInformation
fn clone(&self) -> ApInformation
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl RefUnwindSafe for ApInformation
impl Send for ApInformation
impl Sync for ApInformation
impl Unpin for ApInformation
impl UnwindSafe for ApInformation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more