pub struct VirtualGatewaySpec {
pub backend_defaults: Option<VirtualGatewayBackendDefaults>,
pub listeners: Vec<VirtualGatewayListener>,
pub logging: Option<VirtualGatewayLogging>,
}
Expand description
An object that represents the specification of a service mesh resource.
Fields§
§backend_defaults: Option<VirtualGatewayBackendDefaults>
A reference to an object that represents the defaults for backends.
listeners: Vec<VirtualGatewayListener>
The listeners that the mesh endpoint is expected to receive inbound traffic from. You can specify one listener.
logging: Option<VirtualGatewayLogging>
Trait Implementations§
Source§impl Clone for VirtualGatewaySpec
impl Clone for VirtualGatewaySpec
Source§fn clone(&self) -> VirtualGatewaySpec
fn clone(&self) -> VirtualGatewaySpec
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 VirtualGatewaySpec
impl Debug for VirtualGatewaySpec
Source§impl Default for VirtualGatewaySpec
impl Default for VirtualGatewaySpec
Source§fn default() -> VirtualGatewaySpec
fn default() -> VirtualGatewaySpec
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VirtualGatewaySpec
impl<'de> Deserialize<'de> for VirtualGatewaySpec
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
Source§impl PartialEq for VirtualGatewaySpec
impl PartialEq for VirtualGatewaySpec
Source§impl Serialize for VirtualGatewaySpec
impl Serialize for VirtualGatewaySpec
impl StructuralPartialEq for VirtualGatewaySpec
Auto Trait Implementations§
impl Freeze for VirtualGatewaySpec
impl RefUnwindSafe for VirtualGatewaySpec
impl Send for VirtualGatewaySpec
impl Sync for VirtualGatewaySpec
impl Unpin for VirtualGatewaySpec
impl UnwindSafe for VirtualGatewaySpec
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