Struct k8s_openapi::api::networking::v1::HTTPIngressRuleValue
source · pub struct HTTPIngressRuleValue {
pub paths: Vec<HTTPIngressPath>,
}
Expand description
HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last ‘/’ and before the first ‘?’ or ‘#’.
Fields§
§paths: Vec<HTTPIngressPath>
paths is a collection of paths that map requests to backends.
Trait Implementations§
source§impl Clone for HTTPIngressRuleValue
impl Clone for HTTPIngressRuleValue
source§fn clone(&self) -> HTTPIngressRuleValue
fn clone(&self) -> HTTPIngressRuleValue
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 HTTPIngressRuleValue
impl Debug for HTTPIngressRuleValue
source§impl DeepMerge for HTTPIngressRuleValue
impl DeepMerge for HTTPIngressRuleValue
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for HTTPIngressRuleValue
impl Default for HTTPIngressRuleValue
source§fn default() -> HTTPIngressRuleValue
fn default() -> HTTPIngressRuleValue
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for HTTPIngressRuleValue
impl<'de> Deserialize<'de> for HTTPIngressRuleValue
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 HTTPIngressRuleValue
impl PartialEq for HTTPIngressRuleValue
source§impl Serialize for HTTPIngressRuleValue
impl Serialize for HTTPIngressRuleValue
impl StructuralPartialEq for HTTPIngressRuleValue
Auto Trait Implementations§
impl Freeze for HTTPIngressRuleValue
impl RefUnwindSafe for HTTPIngressRuleValue
impl Send for HTTPIngressRuleValue
impl Sync for HTTPIngressRuleValue
impl Unpin for HTTPIngressRuleValue
impl UnwindSafe for HTTPIngressRuleValue
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)