#[non_exhaustive]pub struct UpdateLinkInput {
pub global_network_id: Option<String>,
pub link_id: Option<String>,
pub description: Option<String>,
pub type: Option<String>,
pub bandwidth: Option<Bandwidth>,
pub provider: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.global_network_id: Option<String>
The ID of the global network.
link_id: Option<String>
The ID of the link.
description: Option<String>
A description of the link.
Constraints: Maximum length of 256 characters.
type: Option<String>
The type of the link.
Constraints: Maximum length of 128 characters.
bandwidth: Option<Bandwidth>
The upload and download speed in Mbps.
provider: Option<String>
The provider of the link.
Constraints: Maximum length of 128 characters.
Implementations§
source§impl UpdateLinkInput
impl UpdateLinkInput
sourcepub fn global_network_id(&self) -> Option<&str>
pub fn global_network_id(&self) -> Option<&str>
The ID of the global network.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the link.
Constraints: Maximum length of 256 characters.
source§impl UpdateLinkInput
impl UpdateLinkInput
sourcepub fn builder() -> UpdateLinkInputBuilder
pub fn builder() -> UpdateLinkInputBuilder
Creates a new builder-style object to manufacture UpdateLinkInput
.
Trait Implementations§
source§impl Clone for UpdateLinkInput
impl Clone for UpdateLinkInput
source§fn clone(&self) -> UpdateLinkInput
fn clone(&self) -> UpdateLinkInput
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 UpdateLinkInput
impl Debug for UpdateLinkInput
source§impl PartialEq for UpdateLinkInput
impl PartialEq for UpdateLinkInput
source§fn eq(&self, other: &UpdateLinkInput) -> bool
fn eq(&self, other: &UpdateLinkInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateLinkInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateLinkInput
impl Send for UpdateLinkInput
impl Sync for UpdateLinkInput
impl Unpin for UpdateLinkInput
impl UnwindSafe for UpdateLinkInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.