#[non_exhaustive]pub struct InterconnectGroupConfigured {
pub topology_capability: Option<InterconnectGroupConfiguredTopologyCapability>,
/* private fields */
}Available on crate feature
interconnect-groups only.Expand description
[Output Only] The status of the group as configured. This has the same structure as the operational field reported by the OperationalStatus method, but does not take into account the operational status of each resource.
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.topology_capability: Option<InterconnectGroupConfiguredTopologyCapability>Implementations§
Source§impl InterconnectGroupConfigured
impl InterconnectGroupConfigured
pub fn new() -> Self
Sourcepub fn set_topology_capability<T>(self, v: T) -> Self
pub fn set_topology_capability<T>(self, v: T) -> Self
Sets the value of topology_capability.
§Example
ⓘ
use google_cloud_compute_v1::model::InterconnectGroupConfiguredTopologyCapability;
let x = InterconnectGroupConfigured::new().set_topology_capability(InterconnectGroupConfiguredTopologyCapability::default()/* use setters */);Sourcepub fn set_or_clear_topology_capability<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_topology_capability<T>(self, v: Option<T>) -> Self
Sets or clears the value of topology_capability.
§Example
ⓘ
use google_cloud_compute_v1::model::InterconnectGroupConfiguredTopologyCapability;
let x = InterconnectGroupConfigured::new().set_or_clear_topology_capability(Some(InterconnectGroupConfiguredTopologyCapability::default()/* use setters */));
let x = InterconnectGroupConfigured::new().set_or_clear_topology_capability(None::<InterconnectGroupConfiguredTopologyCapability>);Trait Implementations§
Source§impl Clone for InterconnectGroupConfigured
impl Clone for InterconnectGroupConfigured
Source§fn clone(&self) -> InterconnectGroupConfigured
fn clone(&self) -> InterconnectGroupConfigured
Returns a duplicate 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 InterconnectGroupConfigured
impl Debug for InterconnectGroupConfigured
Source§impl Default for InterconnectGroupConfigured
impl Default for InterconnectGroupConfigured
Source§fn default() -> InterconnectGroupConfigured
fn default() -> InterconnectGroupConfigured
Returns the “default value” for a type. Read more
impl StructuralPartialEq for InterconnectGroupConfigured
Auto Trait Implementations§
impl Freeze for InterconnectGroupConfigured
impl RefUnwindSafe for InterconnectGroupConfigured
impl Send for InterconnectGroupConfigured
impl Sync for InterconnectGroupConfigured
impl Unpin for InterconnectGroupConfigured
impl UnwindSafe for InterconnectGroupConfigured
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