pub struct Target {
pub device_vendor: Option<String>,
pub device_name: Option<String>,
pub device_core: Option<String>,
pub board_vendor: Option<String>,
pub board_name: Option<String>,
pub board_revision: Option<String>,
pub content: String,
}Expand description
Represents the PDSC Targets element
Fields§
§device_vendor: Option<String>The silicon vendor of the device
device_name: Option<String>The name of the device (wildcards possible)
device_core: Option<String>The name of the processor core
board_vendor: Option<String>The name of the board vendor
board_name: Option<String>The name of the board
board_revision: Option<String>Specifies the board revision
content: StringOptional descriptive text content of the target element; empty string if absent
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Target
impl<'de> Deserialize<'de> for Target
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
impl Eq for Target
impl StructuralPartialEq for Target
Auto Trait Implementations§
impl Freeze for Target
impl RefUnwindSafe for Target
impl Send for Target
impl Sync for Target
impl Unpin for Target
impl UnsafeUnpin for Target
impl UnwindSafe for Target
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