pub struct Transceiver {
pub rx_input_power_milli_watts: Option<f64>,
pub supply_voltage: Option<f64>,
pub tx_bias_current_milli_amps: Option<f64>,
pub tx_output_power_milli_watts: Option<f64>,
}
Expand description
The transceiver metrics.
Fields§
§rx_input_power_milli_watts: Option<f64>
The RX input power value of a small form-factor pluggable (SFP) transceiver.
supply_voltage: Option<f64>
The supply voltage of a small form-factor pluggable (SFP) transceiver.
tx_bias_current_milli_amps: Option<f64>
The TX bias current value of a small form-factor pluggable (SFP) transceiver.
tx_output_power_milli_watts: Option<f64>
The TX output power value of a small form-factor pluggable (SFP) transceiver.
Trait Implementations§
Source§impl Clone for Transceiver
impl Clone for Transceiver
Source§fn clone(&self) -> Transceiver
fn clone(&self) -> Transceiver
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 Transceiver
impl Debug for Transceiver
Source§impl Default for Transceiver
impl Default for Transceiver
Source§impl<'de> Deserialize<'de> for Transceiver
impl<'de> Deserialize<'de> for Transceiver
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 Transceiver
impl Metadata<'static> for Transceiver
Source§const JSON_SCHEMA: &'static str = "PortMetrics.v1_4_0.json"
const JSON_SCHEMA: &'static str = "PortMetrics.v1_4_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 Transceiver
impl RefUnwindSafe for Transceiver
impl Send for Transceiver
impl Sync for Transceiver
impl Unpin for Transceiver
impl UnwindSafe for Transceiver
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