pub struct LinkConfiguration {
pub auto_speed_negotiation_capable: Option<bool>,
pub auto_speed_negotiation_enabled: Option<bool>,
pub capable_link_speed_gbps: Option<Vec<f64>>,
pub configured_network_links: Option<Vec<ConfiguredNetworkLink>>,
}
Expand description
Properties of the link for which this port is configured.
Fields§
§auto_speed_negotiation_capable: Option<bool>
An indication of whether the port is capable of autonegotiating speed.
auto_speed_negotiation_enabled: Option<bool>
Controls whether this port is configured to enable autonegotiating speed.
capable_link_speed_gbps: Option<Vec<f64>>
The set of link speed capabilities of this port.
configured_network_links: Option<Vec<ConfiguredNetworkLink>>
The set of link speed and width pairs this port is configured to use for autonegotiation.
Trait Implementations§
Source§impl Clone for LinkConfiguration
impl Clone for LinkConfiguration
Source§fn clone(&self) -> LinkConfiguration
fn clone(&self) -> LinkConfiguration
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 LinkConfiguration
impl Debug for LinkConfiguration
Source§impl Default for LinkConfiguration
impl Default for LinkConfiguration
Source§impl<'de> Deserialize<'de> for LinkConfiguration
impl<'de> Deserialize<'de> for LinkConfiguration
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 LinkConfiguration
impl Metadata<'static> for LinkConfiguration
Source§const JSON_SCHEMA: &'static str = "Port.v1_9_0.json"
const JSON_SCHEMA: &'static str = "Port.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 LinkConfiguration
impl RefUnwindSafe for LinkConfiguration
impl Send for LinkConfiguration
impl Sync for LinkConfiguration
impl Unpin for LinkConfiguration
impl UnwindSafe for LinkConfiguration
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