pub struct Links {
pub base: Links,
pub chassis: Option<NavProperty<Chassis>>,
pub processors: Option<Vec<NavProperty<Processor>>>,
pub batteries: Option<Vec<ReferenceLeaf>>,
pub endpoints: Option<Vec<ReferenceLeaf>>,
pub memory_media_sources: Option<Vec<ReferenceLeaf>>,
pub memory_region_media_sources: Option<Vec<ReferenceLeaf>>,
}Fields§
§base: LinksBase type
chassis: Option<NavProperty<Chassis>>The link to the chassis that contains this memory device.
This property shall contain a link to a resource of type Chassis that represents the physical
container associated with this memory device.
processors: Option<Vec<NavProperty<Processor>>>An array of links to the processors associated with this memory device.
This property shall contain an array of links to resources of type Processor that are associated
with this memory device.
batteries: Option<Vec<ReferenceLeaf>>§endpoints: Option<Vec<ReferenceLeaf>>§memory_media_sources: Option<Vec<ReferenceLeaf>>§memory_region_media_sources: Option<Vec<ReferenceLeaf>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Links
impl<'de> Deserialize<'de> for Links
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 Links
impl RefUnwindSafe for Links
impl Send for Links
impl Sync for Links
impl Unpin for Links
impl UnsafeUnpin for Links
impl UnwindSafe for Links
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