pub struct Core {
pub name: String,
pub core_type: CoreType,
pub core_access_options: CoreAccessOptions,
}Expand description
An individual core inside a chip
Fields§
§name: StringThe core name.
core_type: CoreTypeThe core type.
E.g. M0 or M4.
core_access_options: CoreAccessOptionsThe AP number to access the core
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Core
impl<'de> Deserialize<'de> for Core
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Core
impl RefUnwindSafe for Core
impl Send for Core
impl Sync for Core
impl Unpin for Core
impl UnwindSafe for Core
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