pub struct AppSpecIngressRulesItemMatchAuthority {
pub exact: Option<AppSpecIngressRulesItemMatchAuthorityExact>,
}Expand description
The authority to match on.
JSON schema
{
"description": "The authority to match on.",
"type": "object",
"required": [
"exact"
],
"properties": {
"exact": {
"description": "Exact string match. An empty string is a valid value and will be serialized explicitly rather than being omitted from the payload.",
"examples": [
"example.com"
],
"type": [
"string",
"null"
],
"maxLength": 256
}
}
}Fields§
§exact: Option<AppSpecIngressRulesItemMatchAuthorityExact>Exact string match. An empty string is a valid value and will be serialized explicitly rather than being omitted from the payload.
Trait Implementations§
Source§impl Clone for AppSpecIngressRulesItemMatchAuthority
impl Clone for AppSpecIngressRulesItemMatchAuthority
Source§fn clone(&self) -> AppSpecIngressRulesItemMatchAuthority
fn clone(&self) -> AppSpecIngressRulesItemMatchAuthority
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AppSpecIngressRulesItemMatchAuthority
impl<'de> Deserialize<'de> for AppSpecIngressRulesItemMatchAuthority
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 From<&AppSpecIngressRulesItemMatchAuthority> for AppSpecIngressRulesItemMatchAuthority
impl From<&AppSpecIngressRulesItemMatchAuthority> for AppSpecIngressRulesItemMatchAuthority
Source§fn from(value: &AppSpecIngressRulesItemMatchAuthority) -> Self
fn from(value: &AppSpecIngressRulesItemMatchAuthority) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AppSpecIngressRulesItemMatchAuthority
impl RefUnwindSafe for AppSpecIngressRulesItemMatchAuthority
impl Send for AppSpecIngressRulesItemMatchAuthority
impl Sync for AppSpecIngressRulesItemMatchAuthority
impl Unpin for AppSpecIngressRulesItemMatchAuthority
impl UnsafeUnpin for AppSpecIngressRulesItemMatchAuthority
impl UnwindSafe for AppSpecIngressRulesItemMatchAuthority
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