pub struct HTTPRouteRulesFiltersExtensionRef {
pub group: String,
pub kind: String,
pub name: String,
}Expand description
ExtensionRef is an optional, implementation-specific extension to the “filter” behavior. For example, resource “myroutefilter” in group “networking.example.net”). ExtensionRef MUST NOT be used for core and extended filters. This filter can be used multiple times within the same rule. Support: Implementation-specific
Fields§
§group: StringGroup is the group of the referent. For example, “gateway.networking.k8s.io”. When unspecified or empty string, core API group is inferred.
kind: StringKind is kind of the referent. For example “HTTPRoute” or “Service”.
name: StringName is the name of the referent.
Trait Implementations§
Source§impl Clone for HTTPRouteRulesFiltersExtensionRef
impl Clone for HTTPRouteRulesFiltersExtensionRef
Source§fn clone(&self) -> HTTPRouteRulesFiltersExtensionRef
fn clone(&self) -> HTTPRouteRulesFiltersExtensionRef
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<'de> Deserialize<'de> for HTTPRouteRulesFiltersExtensionRef
impl<'de> Deserialize<'de> for HTTPRouteRulesFiltersExtensionRef
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 HTTPRouteRulesFiltersExtensionRef
impl PartialEq for HTTPRouteRulesFiltersExtensionRef
Source§fn eq(&self, other: &HTTPRouteRulesFiltersExtensionRef) -> bool
fn eq(&self, other: &HTTPRouteRulesFiltersExtensionRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HTTPRouteRulesFiltersExtensionRef
Auto Trait Implementations§
impl Freeze for HTTPRouteRulesFiltersExtensionRef
impl RefUnwindSafe for HTTPRouteRulesFiltersExtensionRef
impl Send for HTTPRouteRulesFiltersExtensionRef
impl Sync for HTTPRouteRulesFiltersExtensionRef
impl Unpin for HTTPRouteRulesFiltersExtensionRef
impl UnwindSafe for HTTPRouteRulesFiltersExtensionRef
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