Struct k8s_openapi::api::networking::v1::IngressLoadBalancerStatus
source · pub struct IngressLoadBalancerStatus {
pub ingress: Option<Vec<IngressLoadBalancerIngress>>,
}
Expand description
IngressLoadBalancerStatus represents the status of a load-balancer.
Fields§
§ingress: Option<Vec<IngressLoadBalancerIngress>>
ingress is a list containing ingress points for the load-balancer.
Trait Implementations§
source§impl Clone for IngressLoadBalancerStatus
impl Clone for IngressLoadBalancerStatus
source§fn clone(&self) -> IngressLoadBalancerStatus
fn clone(&self) -> IngressLoadBalancerStatus
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 IngressLoadBalancerStatus
impl Debug for IngressLoadBalancerStatus
source§impl DeepMerge for IngressLoadBalancerStatus
impl DeepMerge for IngressLoadBalancerStatus
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for IngressLoadBalancerStatus
impl Default for IngressLoadBalancerStatus
source§fn default() -> IngressLoadBalancerStatus
fn default() -> IngressLoadBalancerStatus
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IngressLoadBalancerStatus
impl<'de> Deserialize<'de> for IngressLoadBalancerStatus
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 IngressLoadBalancerStatus
impl PartialEq for IngressLoadBalancerStatus
source§fn eq(&self, other: &IngressLoadBalancerStatus) -> bool
fn eq(&self, other: &IngressLoadBalancerStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IngressLoadBalancerStatus
Auto Trait Implementations§
impl Freeze for IngressLoadBalancerStatus
impl RefUnwindSafe for IngressLoadBalancerStatus
impl Send for IngressLoadBalancerStatus
impl Sync for IngressLoadBalancerStatus
impl Unpin for IngressLoadBalancerStatus
impl UnwindSafe for IngressLoadBalancerStatus
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