pub struct PrivatePoolV1Config {
pub network_config: Option<NetworkConfig>,
pub private_service_connect: Option<PrivateServiceConnect>,
pub worker_config: Option<WorkerConfig>,
}Expand description
Configuration for a V1 PrivatePool.
This type is not used in any activity, and only used as part of another schema.
Fields§
§network_config: Option<NetworkConfig>Network configuration for the pool.
private_service_connect: Option<PrivateServiceConnect>Immutable. Private Service Connect(PSC) Network configuration for the pool.
worker_config: Option<WorkerConfig>Machine configuration for the workers in the pool.
Trait Implementations§
Source§impl Clone for PrivatePoolV1Config
impl Clone for PrivatePoolV1Config
Source§fn clone(&self) -> PrivatePoolV1Config
fn clone(&self) -> PrivatePoolV1Config
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 PrivatePoolV1Config
impl Debug for PrivatePoolV1Config
Source§impl Default for PrivatePoolV1Config
impl Default for PrivatePoolV1Config
Source§fn default() -> PrivatePoolV1Config
fn default() -> PrivatePoolV1Config
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivatePoolV1Config
impl<'de> Deserialize<'de> for PrivatePoolV1Config
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 Serialize for PrivatePoolV1Config
impl Serialize for PrivatePoolV1Config
impl Part for PrivatePoolV1Config
Auto Trait Implementations§
impl Freeze for PrivatePoolV1Config
impl RefUnwindSafe for PrivatePoolV1Config
impl Send for PrivatePoolV1Config
impl Sync for PrivatePoolV1Config
impl Unpin for PrivatePoolV1Config
impl UnwindSafe for PrivatePoolV1Config
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