pub struct PortForwarding {
pub external_port: u16,
pub internal_ip_address: IpAddr,
pub internal_port: u16,
pub protocol: String,
}Fields§
§external_port: u16TCP or UDP port used by floating IP.
internal_ip_address: IpAddrFixed IP address of internal port.
internal_port: u16TCP or UDP port used by internal port.
protocol: StringNetwork IP protocol.
Trait Implementations§
Source§impl Clone for PortForwarding
impl Clone for PortForwarding
Source§fn clone(&self) -> PortForwarding
fn clone(&self) -> PortForwarding
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 PortForwarding
impl Debug for PortForwarding
Source§impl<'de> Deserialize<'de> for PortForwarding
impl<'de> Deserialize<'de> for PortForwarding
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PortForwarding
impl PartialEq for PortForwarding
impl Eq for PortForwarding
impl StructuralPartialEq for PortForwarding
Auto Trait Implementations§
impl Freeze for PortForwarding
impl RefUnwindSafe for PortForwarding
impl Send for PortForwarding
impl Sync for PortForwarding
impl Unpin for PortForwarding
impl UnwindSafe for PortForwarding
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.