pub struct GetLinkAssociationsRequest {
pub device_id: Option<String>,
pub global_network_id: String,
pub link_id: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§device_id: Option<String>
The ID of the device.
global_network_id: String
The ID of the global network.
link_id: Option<String>
The ID of the link.
max_results: Option<i64>
The maximum number of results to return.
next_token: Option<String>
The token for the next page of results.
Trait Implementations§
Source§impl Clone for GetLinkAssociationsRequest
impl Clone for GetLinkAssociationsRequest
Source§fn clone(&self) -> GetLinkAssociationsRequest
fn clone(&self) -> GetLinkAssociationsRequest
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 GetLinkAssociationsRequest
impl Debug for GetLinkAssociationsRequest
Source§impl Default for GetLinkAssociationsRequest
impl Default for GetLinkAssociationsRequest
Source§fn default() -> GetLinkAssociationsRequest
fn default() -> GetLinkAssociationsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetLinkAssociationsRequest
Auto Trait Implementations§
impl Freeze for GetLinkAssociationsRequest
impl RefUnwindSafe for GetLinkAssociationsRequest
impl Send for GetLinkAssociationsRequest
impl Sync for GetLinkAssociationsRequest
impl Unpin for GetLinkAssociationsRequest
impl UnwindSafe for GetLinkAssociationsRequest
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