pub struct ControllerLinks {
pub network_device_functions: Option<Vec<IdRef>>,
pub network_device_functions_odata_count: Option<Count>,
pub network_ports: Option<Vec<IdRef>>,
pub network_ports_odata_count: Option<Count>,
pub oem: Option<Oem>,
pub pcie_devices: Option<Vec<IdRef>>,
pub pcie_devices_odata_count: Option<Count>,
pub ports: Option<Vec<IdRef>>,
pub ports_odata_count: Option<Count>,
}
Expand description
The links to other resources that are related to this resource.
Fields§
§network_device_functions: Option<Vec<IdRef>>
An array of links to the network device functions associated with this network controller.
network_device_functions_odata_count: Option<Count>
§network_ports: Option<Vec<IdRef>>
An array of links to the network ports associated with this network controller.
network_ports_odata_count: Option<Count>
§oem: Option<Oem>
§pcie_devices: Option<Vec<IdRef>>
An array of links to the PCIe devices associated with this network controller.
pcie_devices_odata_count: Option<Count>
§ports: Option<Vec<IdRef>>
An array of links to the ports associated with this network controller.
ports_odata_count: Option<Count>
Trait Implementations§
Source§impl Clone for ControllerLinks
impl Clone for ControllerLinks
Source§fn clone(&self) -> ControllerLinks
fn clone(&self) -> ControllerLinks
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 ControllerLinks
impl Debug for ControllerLinks
Source§impl Default for ControllerLinks
impl Default for ControllerLinks
Source§impl<'de> Deserialize<'de> for ControllerLinks
impl<'de> Deserialize<'de> for ControllerLinks
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 ControllerLinks
impl Metadata<'static> for ControllerLinks
Source§const JSON_SCHEMA: &'static str = "NetworkAdapter.v1_9_0.json"
const JSON_SCHEMA: &'static str = "NetworkAdapter.v1_9_0.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 ControllerLinks
impl RefUnwindSafe for ControllerLinks
impl Send for ControllerLinks
impl Sync for ControllerLinks
impl Unpin for ControllerLinks
impl UnwindSafe for ControllerLinks
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