pub struct IngressSpec {
pub ingress_class_name: Option<String>,
pub tls: Vec<IngressTLS>,
pub rules: Vec<IngressRule>,
pub default_backend: Option<IngressBackend>,
}Fields§
§ingress_class_name: Option<String>§tls: Vec<IngressTLS>§rules: Vec<IngressRule>§default_backend: Option<IngressBackend>Trait Implementations§
Source§impl Clone for IngressSpec
impl Clone for IngressSpec
Source§fn clone(&self) -> IngressSpec
fn clone(&self) -> IngressSpec
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 IngressSpec
impl Debug for IngressSpec
Source§impl<'de> Deserialize<'de> for IngressSpec
impl<'de> Deserialize<'de> for IngressSpec
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
Auto Trait Implementations§
impl Freeze for IngressSpec
impl RefUnwindSafe for IngressSpec
impl Send for IngressSpec
impl Sync for IngressSpec
impl Unpin for IngressSpec
impl UnsafeUnpin for IngressSpec
impl UnwindSafe for IngressSpec
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