pub struct GetLinksRequest {
pub global_network_id: String,
pub link_ids: Option<Vec<String>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub provider: Option<String>,
pub site_id: Option<String>,
pub type_: Option<String>,
}
Fields§
§global_network_id: String
The ID of the global network.
link_ids: Option<Vec<String>>
One or more link IDs. The maximum is 10.
max_results: Option<i64>
The maximum number of results to return.
next_token: Option<String>
The token for the next page of results.
provider: Option<String>
The link provider.
site_id: Option<String>
The ID of the site.
type_: Option<String>
The link type.
Trait Implementations§
Source§impl Clone for GetLinksRequest
impl Clone for GetLinksRequest
Source§fn clone(&self) -> GetLinksRequest
fn clone(&self) -> GetLinksRequest
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 GetLinksRequest
impl Debug for GetLinksRequest
Source§impl Default for GetLinksRequest
impl Default for GetLinksRequest
Source§fn default() -> GetLinksRequest
fn default() -> GetLinksRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetLinksRequest
impl PartialEq for GetLinksRequest
Source§impl Serialize for GetLinksRequest
impl Serialize for GetLinksRequest
impl StructuralPartialEq for GetLinksRequest
Auto Trait Implementations§
impl Freeze for GetLinksRequest
impl RefUnwindSafe for GetLinksRequest
impl Send for GetLinksRequest
impl Sync for GetLinksRequest
impl Unpin for GetLinksRequest
impl UnwindSafe for GetLinksRequest
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