pub struct HTTPSEdge {
pub id: String,
pub description: String,
pub metadata: String,
pub created_at: String,
pub uri: String,
pub hostports: Option<Vec<String>>,
pub mutual_tls: Option<EndpointMutualTLS>,
pub tls_termination: Option<EndpointTLSTermination>,
pub routes: Vec<HTTPSEdgeRoute>,
}
Fields§
§id: String
unique identifier of this edge
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.
created_at: String
timestamp when the edge configuration was created, RFC 3339 format
uri: String
URI of the edge API resource
hostports: Option<Vec<String>>
hostports served by this edge
mutual_tls: Option<EndpointMutualTLS>
edge modules
tls_termination: Option<EndpointTLSTermination>
§routes: Vec<HTTPSEdgeRoute>
routes
Trait Implementations§
Source§impl<'de> Deserialize<'de> for HTTPSEdge
impl<'de> Deserialize<'de> for HTTPSEdge
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 HTTPSEdge
impl RefUnwindSafe for HTTPSEdge
impl Send for HTTPSEdge
impl Sync for HTTPSEdge
impl Unpin for HTTPSEdge
impl UnwindSafe for HTTPSEdge
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