pub struct GatewayConfiguration {Show 14 fields
pub gateway: Gateway,
pub peers: Vec<Peer>,
pub targets: Vec<Target>,
pub services: Vec<Service>,
pub endpoints: Vec<Endpoint>,
pub backends: Vec<Backend>,
pub pipelines: Vec<Pipeline>,
pub middlewares: Vec<Middleware>,
pub transforms: Vec<Transform>,
pub policies: Vec<Policy>,
pub rules: Vec<Rule>,
pub networks: Vec<Network>,
pub runbeam: Option<Runbeam>,
pub authentications: Vec<Authentication>,
}Expand description
Full gateway configuration (for downloading complete config)
Fields§
§gateway: Gateway§peers: Vec<Peer>§targets: Vec<Target>§services: Vec<Service>§endpoints: Vec<Endpoint>§backends: Vec<Backend>§pipelines: Vec<Pipeline>§middlewares: Vec<Middleware>§transforms: Vec<Transform>§policies: Vec<Policy>§rules: Vec<Rule>§networks: Vec<Network>§runbeam: Option<Runbeam>§authentications: Vec<Authentication>Trait Implementations§
Source§impl Clone for GatewayConfiguration
impl Clone for GatewayConfiguration
Source§fn clone(&self) -> GatewayConfiguration
fn clone(&self) -> GatewayConfiguration
Returns a duplicate 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 GatewayConfiguration
impl Debug for GatewayConfiguration
Source§impl<'de> Deserialize<'de> for GatewayConfiguration
impl<'de> Deserialize<'de> for GatewayConfiguration
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 GatewayConfiguration
impl RefUnwindSafe for GatewayConfiguration
impl Send for GatewayConfiguration
impl Sync for GatewayConfiguration
impl Unpin for GatewayConfiguration
impl UnwindSafe for GatewayConfiguration
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