pub struct HTTPSEdgeCreate {
pub description: String,
pub metadata: String,
pub hostports: Option<Vec<String>>,
pub mutual_tls: Option<EndpointMutualTLSMutate>,
pub tls_termination: Option<EndpointTLSTerminationAtEdge>,
}
Fields§
§description: String
human-readable description of what this edge will be used for; optional, max 255 bytes.
metadata: String
arbitrary user-defined machine-readable data of this edge; optional, max 4096 bytes.
hostports: Option<Vec<String>>
hostports served by this edge
mutual_tls: Option<EndpointMutualTLSMutate>
edge modules
tls_termination: Option<EndpointTLSTerminationAtEdge>
Trait Implementations§
Source§impl Clone for HTTPSEdgeCreate
impl Clone for HTTPSEdgeCreate
Source§fn clone(&self) -> HTTPSEdgeCreate
fn clone(&self) -> HTTPSEdgeCreate
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 HTTPSEdgeCreate
impl Debug for HTTPSEdgeCreate
Source§impl Default for HTTPSEdgeCreate
impl Default for HTTPSEdgeCreate
Source§fn default() -> HTTPSEdgeCreate
fn default() -> HTTPSEdgeCreate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HTTPSEdgeCreate
impl<'de> Deserialize<'de> for HTTPSEdgeCreate
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 HTTPSEdgeCreate
impl RefUnwindSafe for HTTPSEdgeCreate
impl Send for HTTPSEdgeCreate
impl Sync for HTTPSEdgeCreate
impl Unpin for HTTPSEdgeCreate
impl UnwindSafe for HTTPSEdgeCreate
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