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>
A collection of paths that map requests to backends.
Trait Implementations
sourceimpl Clone for HTTPIngressRuleValue
impl Clone for HTTPIngressRuleValue
sourcefn clone(&self) -> HTTPIngressRuleValue
fn clone(&self) -> HTTPIngressRuleValue
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for HTTPIngressRuleValue
impl Debug for HTTPIngressRuleValue
sourceimpl DeepMerge for HTTPIngressRuleValue
impl DeepMerge for HTTPIngressRuleValue
sourcefn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge other
into self
.
sourceimpl Default for HTTPIngressRuleValue
impl Default for HTTPIngressRuleValue
sourcefn default() -> HTTPIngressRuleValue
fn default() -> HTTPIngressRuleValue
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for HTTPIngressRuleValue
impl<'de> Deserialize<'de> for HTTPIngressRuleValue
sourcefn 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
sourceimpl PartialEq<HTTPIngressRuleValue> for HTTPIngressRuleValue
impl PartialEq<HTTPIngressRuleValue> for HTTPIngressRuleValue
sourcefn eq(&self, other: &HTTPIngressRuleValue) -> bool
fn eq(&self, other: &HTTPIngressRuleValue) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Serialize for HTTPIngressRuleValue
impl Serialize for HTTPIngressRuleValue
impl StructuralPartialEq for HTTPIngressRuleValue
Auto Trait Implementations
impl RefUnwindSafe for HTTPIngressRuleValue
impl Send for HTTPIngressRuleValue
impl Sync for HTTPIngressRuleValue
impl Unpin for HTTPIngressRuleValue
impl UnwindSafe for HTTPIngressRuleValue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more