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