pub struct IngressRouteTCPTlsStore {
pub name: String,
pub namespace: Option<String>,
}Expand description
Store defines the reference to the TLSStore, that will be used to store certificates. Please note that only default TLSStore can be used.
Fields§
§name: StringName defines the name of the referenced Traefik resource.
namespace: Option<String>Namespace defines the namespace of the referenced Traefik resource.
Trait Implementations§
source§impl Clone for IngressRouteTCPTlsStore
impl Clone for IngressRouteTCPTlsStore
source§fn clone(&self) -> IngressRouteTCPTlsStore
fn clone(&self) -> IngressRouteTCPTlsStore
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 IngressRouteTCPTlsStore
impl Debug for IngressRouteTCPTlsStore
source§impl Default for IngressRouteTCPTlsStore
impl Default for IngressRouteTCPTlsStore
source§fn default() -> IngressRouteTCPTlsStore
fn default() -> IngressRouteTCPTlsStore
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IngressRouteTCPTlsStore
impl<'de> Deserialize<'de> for IngressRouteTCPTlsStore
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 JsonSchema for IngressRouteTCPTlsStore
impl JsonSchema for IngressRouteTCPTlsStore
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for IngressRouteTCPTlsStore
impl RefUnwindSafe for IngressRouteTCPTlsStore
impl Send for IngressRouteTCPTlsStore
impl Sync for IngressRouteTCPTlsStore
impl Unpin for IngressRouteTCPTlsStore
impl UnwindSafe for IngressRouteTCPTlsStore
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