pub struct StorageControllerLinks {
pub endpoints: Option<Vec<IdRef>>,
pub endpoints_odata_count: Option<Count>,
pub oem: Option<Oem>,
pub pcie_functions: Option<Vec<IdRef>>,
pub pcie_functions_odata_count: Option<Count>,
pub storage_services: Option<Vec<IdRef>>,
pub storage_services_odata_count: Option<Count>,
}
Expand description
The links to other resources that are related to this resource.
Fields§
§endpoints: Option<Vec<IdRef>>
An array of links to the endpoints that connect to this controller.
endpoints_odata_count: Option<Count>
§oem: Option<Oem>
§pcie_functions: Option<Vec<IdRef>>
An array of links to the PCIe functions that the storage controller produces.
pcie_functions_odata_count: Option<Count>
§storage_services: Option<Vec<IdRef>>
An array of links to the storage services that connect to this controller.
storage_services_odata_count: Option<Count>
Trait Implementations§
Source§impl Clone for StorageControllerLinks
impl Clone for StorageControllerLinks
Source§fn clone(&self) -> StorageControllerLinks
fn clone(&self) -> StorageControllerLinks
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StorageControllerLinks
impl Debug for StorageControllerLinks
Source§impl Default for StorageControllerLinks
impl Default for StorageControllerLinks
Source§impl<'de> Deserialize<'de> for StorageControllerLinks
impl<'de> Deserialize<'de> for StorageControllerLinks
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
Source§impl Metadata<'static> for StorageControllerLinks
impl Metadata<'static> for StorageControllerLinks
Source§const JSON_SCHEMA: &'static str = "Storage.v1_10_1.json"
const JSON_SCHEMA: &'static str = "Storage.v1_10_1.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for StorageControllerLinks
impl RefUnwindSafe for StorageControllerLinks
impl Send for StorageControllerLinks
impl Sync for StorageControllerLinks
impl Unpin for StorageControllerLinks
impl UnwindSafe for StorageControllerLinks
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