pub struct GatewayClassStatus {
pub conditions: Option<Vec<GatewayClassStatusConditions>>,
}
Expand description
Status defines the current state of GatewayClass. Implementations MUST populate status on all GatewayClass resources which specify their controller name.
Fields§
§conditions: Option<Vec<GatewayClassStatusConditions>>
Conditions is the current status from the controller for this GatewayClass. Controllers should prefer to publish conditions using values of GatewayClassConditionType for the type of each Condition.
Trait Implementations§
Source§impl Clone for GatewayClassStatus
impl Clone for GatewayClassStatus
Source§fn clone(&self) -> GatewayClassStatus
fn clone(&self) -> GatewayClassStatus
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 GatewayClassStatus
impl Debug for GatewayClassStatus
Source§impl Default for GatewayClassStatus
impl Default for GatewayClassStatus
Source§fn default() -> GatewayClassStatus
fn default() -> GatewayClassStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GatewayClassStatus
impl<'de> Deserialize<'de> for GatewayClassStatus
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 GatewayClassStatus
impl PartialEq for GatewayClassStatus
Source§impl Serialize for GatewayClassStatus
impl Serialize for GatewayClassStatus
impl StructuralPartialEq for GatewayClassStatus
Auto Trait Implementations§
impl Freeze for GatewayClassStatus
impl RefUnwindSafe for GatewayClassStatus
impl Send for GatewayClassStatus
impl Sync for GatewayClassStatus
impl Unpin for GatewayClassStatus
impl UnwindSafe for GatewayClassStatus
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