#[non_exhaustive]pub struct DesiredAdditionalIPRangesConfig {
pub additional_ip_ranges_configs: Vec<AdditionalIPRangesConfig>,
/* private fields */
}Expand description
DesiredAdditionalIPRangesConfig is a wrapper used for cluster update operation and contains multiple AdditionalIPRangesConfigs.
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.additional_ip_ranges_configs: Vec<AdditionalIPRangesConfig>List of additional IP ranges configs where each AdditionalIPRangesConfig corresponds to one subnetwork’s IP ranges
Implementations§
Source§impl DesiredAdditionalIPRangesConfig
impl DesiredAdditionalIPRangesConfig
pub fn new() -> Self
Sourcepub fn set_additional_ip_ranges_configs<T, V>(self, v: T) -> Self
pub fn set_additional_ip_ranges_configs<T, V>(self, v: T) -> Self
Sets the value of additional_ip_ranges_configs.
Trait Implementations§
Source§impl Clone for DesiredAdditionalIPRangesConfig
impl Clone for DesiredAdditionalIPRangesConfig
Source§fn clone(&self) -> DesiredAdditionalIPRangesConfig
fn clone(&self) -> DesiredAdditionalIPRangesConfig
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 Default for DesiredAdditionalIPRangesConfig
impl Default for DesiredAdditionalIPRangesConfig
Source§fn default() -> DesiredAdditionalIPRangesConfig
fn default() -> DesiredAdditionalIPRangesConfig
Returns the “default value” for a type. Read more
Source§impl PartialEq for DesiredAdditionalIPRangesConfig
impl PartialEq for DesiredAdditionalIPRangesConfig
Source§fn eq(&self, other: &DesiredAdditionalIPRangesConfig) -> bool
fn eq(&self, other: &DesiredAdditionalIPRangesConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DesiredAdditionalIPRangesConfig
Auto Trait Implementations§
impl Freeze for DesiredAdditionalIPRangesConfig
impl RefUnwindSafe for DesiredAdditionalIPRangesConfig
impl Send for DesiredAdditionalIPRangesConfig
impl Sync for DesiredAdditionalIPRangesConfig
impl Unpin for DesiredAdditionalIPRangesConfig
impl UnwindSafe for DesiredAdditionalIPRangesConfig
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