#[non_exhaustive]pub struct RouterNatSubnetworkToNat64 {
pub name: Option<String>,
/* private fields */
}Available on crate feature
routers only.Expand description
Specifies a subnetwork to enable NAT64.
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.name: Option<String>URL for the subnetwork resource that will use NAT64.
Implementations§
Trait Implementations§
Source§impl Clone for RouterNatSubnetworkToNat64
impl Clone for RouterNatSubnetworkToNat64
Source§fn clone(&self) -> RouterNatSubnetworkToNat64
fn clone(&self) -> RouterNatSubnetworkToNat64
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 RouterNatSubnetworkToNat64
impl Debug for RouterNatSubnetworkToNat64
Source§impl Default for RouterNatSubnetworkToNat64
impl Default for RouterNatSubnetworkToNat64
Source§fn default() -> RouterNatSubnetworkToNat64
fn default() -> RouterNatSubnetworkToNat64
Returns the “default value” for a type. Read more
Source§impl Message for RouterNatSubnetworkToNat64
impl Message for RouterNatSubnetworkToNat64
impl StructuralPartialEq for RouterNatSubnetworkToNat64
Auto Trait Implementations§
impl Freeze for RouterNatSubnetworkToNat64
impl RefUnwindSafe for RouterNatSubnetworkToNat64
impl Send for RouterNatSubnetworkToNat64
impl Sync for RouterNatSubnetworkToNat64
impl Unpin for RouterNatSubnetworkToNat64
impl UnwindSafe for RouterNatSubnetworkToNat64
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