pub struct StaticBackend {
pub id: String,
pub uri: String,
pub created_at: String,
pub description: String,
pub metadata: String,
pub address: String,
pub tls: StaticBackendTLS,
}
Fields§
§id: String
unique identifier for this static backend
uri: String
URI of the StaticBackend API resource
created_at: String
timestamp when the backend was created, RFC 3339 format
description: String
human-readable description of this backend. Optional
metadata: String
arbitrary user-defined machine-readable data of this backend. Optional
address: String
the address to forward to
tls: StaticBackendTLS
tls configuration to use
Trait Implementations§
Source§impl Clone for StaticBackend
impl Clone for StaticBackend
Source§fn clone(&self) -> StaticBackend
fn clone(&self) -> StaticBackend
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 StaticBackend
impl Debug for StaticBackend
Source§impl Default for StaticBackend
impl Default for StaticBackend
Source§fn default() -> StaticBackend
fn default() -> StaticBackend
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StaticBackend
impl<'de> Deserialize<'de> for StaticBackend
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 StaticBackend
impl RefUnwindSafe for StaticBackend
impl Send for StaticBackend
impl Sync for StaticBackend
impl Unpin for StaticBackend
impl UnwindSafe for StaticBackend
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