pub struct SubnetCidrBlockState {
pub state: Option<String>,
pub status_message: Option<String>,
}Expand description
Describes the state of a CIDR block.
Fields§
§state: Option<String>The state of a CIDR block.
status_message: Option<String>A message about the status of the CIDR block, if applicable.
Trait Implementations§
Source§impl Clone for SubnetCidrBlockState
impl Clone for SubnetCidrBlockState
Source§fn clone(&self) -> SubnetCidrBlockState
fn clone(&self) -> SubnetCidrBlockState
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 SubnetCidrBlockState
impl Debug for SubnetCidrBlockState
Source§impl Default for SubnetCidrBlockState
impl Default for SubnetCidrBlockState
Source§fn default() -> SubnetCidrBlockState
fn default() -> SubnetCidrBlockState
Returns the “default value” for a type. Read more
Source§impl PartialEq for SubnetCidrBlockState
impl PartialEq for SubnetCidrBlockState
impl StructuralPartialEq for SubnetCidrBlockState
Auto Trait Implementations§
impl Freeze for SubnetCidrBlockState
impl RefUnwindSafe for SubnetCidrBlockState
impl Send for SubnetCidrBlockState
impl Sync for SubnetCidrBlockState
impl Unpin for SubnetCidrBlockState
impl UnwindSafe for SubnetCidrBlockState
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