pub struct LldpTable {
pub chassis_id: String,
pub chassis_id_subtype: Option<String>,
pub is_wired: bool,
pub local_port_idx: i64,
pub local_port_name: String,
pub port_id: String,
pub power_allocated: Option<i64>,
pub power_requested: Option<i64>,
}
Fields§
§chassis_id: String
§chassis_id_subtype: Option<String>
§is_wired: bool
§local_port_idx: i64
§local_port_name: String
§port_id: String
§power_allocated: Option<i64>
§power_requested: Option<i64>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LldpTable
impl<'de> Deserialize<'de> for LldpTable
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
impl StructuralPartialEq for LldpTable
Auto Trait Implementations§
impl Freeze for LldpTable
impl RefUnwindSafe for LldpTable
impl Send for LldpTable
impl Sync for LldpTable
impl Unpin for LldpTable
impl UnwindSafe for LldpTable
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