Struct k8s_openapi::api::networking::v1::ServiceBackendPort
source · pub struct ServiceBackendPort {
pub name: Option<String>,
pub number: Option<i32>,
}
Expand description
ServiceBackendPort is the service port being referenced.
Fields§
§name: Option<String>
Name is the name of the port on the Service. This is a mutually exclusive setting with “Number”.
number: Option<i32>
Number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with “Name”.
Trait Implementations§
source§impl Clone for ServiceBackendPort
impl Clone for ServiceBackendPort
source§fn clone(&self) -> ServiceBackendPort
fn clone(&self) -> ServiceBackendPort
Returns a copy 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 ServiceBackendPort
impl Debug for ServiceBackendPort
source§impl DeepMerge for ServiceBackendPort
impl DeepMerge for ServiceBackendPort
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for ServiceBackendPort
impl Default for ServiceBackendPort
source§fn default() -> ServiceBackendPort
fn default() -> ServiceBackendPort
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ServiceBackendPort
impl<'de> Deserialize<'de> for ServiceBackendPort
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<ServiceBackendPort> for ServiceBackendPort
impl PartialEq<ServiceBackendPort> for ServiceBackendPort
source§fn eq(&self, other: &ServiceBackendPort) -> bool
fn eq(&self, other: &ServiceBackendPort) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.