pub struct LinkAssociation {
pub device_id: Option<String>,
pub global_network_id: Option<String>,
pub link_association_state: Option<String>,
pub link_id: Option<String>,
}
Expand description
Describes the association between a device and a link.
Fields§
§device_id: Option<String>
The device ID for the link association.
global_network_id: Option<String>
The ID of the global network.
link_association_state: Option<String>
The state of the association.
link_id: Option<String>
The ID of the link.
Trait Implementations§
Source§impl Clone for LinkAssociation
impl Clone for LinkAssociation
Source§fn clone(&self) -> LinkAssociation
fn clone(&self) -> LinkAssociation
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LinkAssociation
impl Debug for LinkAssociation
Source§impl Default for LinkAssociation
impl Default for LinkAssociation
Source§fn default() -> LinkAssociation
fn default() -> LinkAssociation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LinkAssociation
impl<'de> Deserialize<'de> for LinkAssociation
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 PartialEq for LinkAssociation
impl PartialEq for LinkAssociation
impl StructuralPartialEq for LinkAssociation
Auto Trait Implementations§
impl Freeze for LinkAssociation
impl RefUnwindSafe for LinkAssociation
impl Send for LinkAssociation
impl Sync for LinkAssociation
impl Unpin for LinkAssociation
impl UnwindSafe for LinkAssociation
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