pub struct ListenerStatus {
pub name: SectionName,
pub supported_kinds: Vec<RouteGroupKind>,
pub attached_routes: u16,
pub conditions: Vec<Condition>,
}
Expand description
ListenerStatus is the status associated with a Listener.
Fields§
§name: SectionName
Name is the name of the Listener that this status corresponds to.
supported_kinds: Vec<RouteGroupKind>
SupportedKinds is the list indicating the Kinds supported by this listener. This MUST represent the kinds an implementation supports for that Listener configuration.
If kinds are specified in Spec that are not supported, they MUST NOT appear in this list and an implementation MUST set the “ResolvedRefs” condition to “False” with the “InvalidRouteKinds” reason. If both valid and invalid Route kinds are specified, the implementation MUST reference the valid Route kinds that have been specified.
attached_routes: u16
AttachedRoutes represents the total number of Routes that have been successfully attached to this Listener.
conditions: Vec<Condition>
Conditions describe the current condition of this listener.
Trait Implementations§
Source§impl Clone for ListenerStatus
impl Clone for ListenerStatus
Source§fn clone(&self) -> ListenerStatus
fn clone(&self) -> ListenerStatus
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ListenerStatus
impl Debug for ListenerStatus
Source§impl<'de> Deserialize<'de> for ListenerStatus
impl<'de> Deserialize<'de> for ListenerStatus
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>,
Source§impl JsonSchema for ListenerStatus
impl JsonSchema for ListenerStatus
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read more