pub struct RouteIngressCondition {
pub last_transition_time: Option<Time>,
pub message: Option<String>,
pub reason: Option<String>,
pub status: String,
pub type_: String,
}
Expand description
RouteIngressCondition contains details for the current condition of this route on a particular router.
Fields§
§last_transition_time: Option<Time>
RFC 3339 date and time when this condition last transitioned
message: Option<String>
Human readable message indicating details about last transition.
reason: Option<String>
(brief) reason for the condition’s last transition, and is usually a machine and human readable constant
status: String
Status is the status of the condition. Can be True, False, Unknown.
type_: String
Type is the type of the condition. Currently only Ready.
Trait Implementations§
Source§impl Clone for RouteIngressCondition
impl Clone for RouteIngressCondition
Source§fn clone(&self) -> RouteIngressCondition
fn clone(&self) -> RouteIngressCondition
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 RouteIngressCondition
impl Debug for RouteIngressCondition
Source§impl Default for RouteIngressCondition
impl Default for RouteIngressCondition
Source§fn default() -> RouteIngressCondition
fn default() -> RouteIngressCondition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RouteIngressCondition
impl<'de> Deserialize<'de> for RouteIngressCondition
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 RouteIngressCondition
impl PartialEq for RouteIngressCondition
Source§impl Serialize for RouteIngressCondition
impl Serialize for RouteIngressCondition
impl StructuralPartialEq for RouteIngressCondition
Auto Trait Implementations§
impl Freeze for RouteIngressCondition
impl RefUnwindSafe for RouteIngressCondition
impl Send for RouteIngressCondition
impl Sync for RouteIngressCondition
impl Unpin for RouteIngressCondition
impl UnwindSafe for RouteIngressCondition
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