pub struct Ipv6Pool {
pub description: Option<String>,
pub pool_cidr_blocks: Option<Vec<PoolCidrBlock>>,
pub pool_id: Option<String>,
pub tags: Option<Vec<Tag>>,
}Expand description
Describes an IPv6 address pool.
Fields§
§description: Option<String>The description for the address pool.
pool_cidr_blocks: Option<Vec<PoolCidrBlock>>The CIDR blocks for the address pool.
pool_id: Option<String>The ID of the address pool.
Any tags for the address pool.
Trait Implementations§
impl StructuralPartialEq for Ipv6Pool
Auto Trait Implementations§
impl Freeze for Ipv6Pool
impl RefUnwindSafe for Ipv6Pool
impl Send for Ipv6Pool
impl Sync for Ipv6Pool
impl Unpin for Ipv6Pool
impl UnwindSafe for Ipv6Pool
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