pub enum NextHopType {
Standard,
Nat,
LoadBalancerTarget,
}Expand description
Next hop type.
Variants§
Standard
Direct encapsulation to the target address.
Nat
NAT at the endpoint.
LoadBalancerTarget
Load balancer backend.
Trait Implementations§
Source§impl Clone for NextHopType
impl Clone for NextHopType
Source§fn clone(&self) -> NextHopType
fn clone(&self) -> NextHopType
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 NextHopType
impl Debug for NextHopType
Source§impl Default for NextHopType
impl Default for NextHopType
Source§fn default() -> NextHopType
fn default() -> NextHopType
Returns the “default value” for a type. Read more
Source§impl Display for NextHopType
impl Display for NextHopType
Source§impl Hash for NextHopType
impl Hash for NextHopType
Source§impl PartialEq for NextHopType
impl PartialEq for NextHopType
impl Copy for NextHopType
impl Eq for NextHopType
impl StructuralPartialEq for NextHopType
Auto Trait Implementations§
impl Freeze for NextHopType
impl RefUnwindSafe for NextHopType
impl Send for NextHopType
impl Sync for NextHopType
impl Unpin for NextHopType
impl UnwindSafe for NextHopType
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