pub struct LLDPTransmit {
pub chassis_id: Option<String>,
pub chassis_id_subtype: Option<IEEE802ISubtype>,
pub management_address_ipv4: Option<String>,
pub management_address_ipv6: Option<String>,
pub management_address_mac: Option<String>,
pub management_vlan_id: Option<i64>,
pub port_id: Option<String>,
pub port_id_subtype: Option<IEEE802ISubtype>,
pub system_capabilities: Option<Vec<LLDPSystemCapabilities>>,
pub system_description: Option<String>,
pub system_name: Option<String>,
}
Expand description
Link Layer Data Protocol (LLDP) data being transmitted on this link.
Fields§
§chassis_id: Option<String>
Link Layer Data Protocol (LLDP) chassis ID.
chassis_id_subtype: Option<IEEE802ISubtype>
§management_address_ipv4: Option<String>
The IPv4 management address to be transmitted from this endpoint.
management_address_ipv6: Option<String>
The IPv6 management address to be transmitted from this endpoint.
management_address_mac: Option<String>
The management MAC address to be transmitted from this endpoint.
management_vlan_id: Option<i64>
The management VLAN ID to be transmitted from this endpoint.
port_id: Option<String>
A colon delimited string of hexadecimal octets identifying a port to be transmitted from this endpoint.
port_id_subtype: Option<IEEE802ISubtype>
§system_capabilities: Option<Vec<LLDPSystemCapabilities>>
The system capabilities to be transmitted from this endpoint.
system_description: Option<String>
The system description to be transmitted from this endpoint.
system_name: Option<String>
The system name to be transmitted from this endpoint.
Trait Implementations§
Source§impl Clone for LLDPTransmit
impl Clone for LLDPTransmit
Source§fn clone(&self) -> LLDPTransmit
fn clone(&self) -> LLDPTransmit
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 LLDPTransmit
impl Debug for LLDPTransmit
Source§impl Default for LLDPTransmit
impl Default for LLDPTransmit
Source§impl<'de> Deserialize<'de> for LLDPTransmit
impl<'de> Deserialize<'de> for LLDPTransmit
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 LLDPTransmit
impl Metadata<'static> for LLDPTransmit
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 LLDPTransmit
impl RefUnwindSafe for LLDPTransmit
impl Send for LLDPTransmit
impl Sync for LLDPTransmit
impl Unpin for LLDPTransmit
impl UnwindSafe for LLDPTransmit
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