pub struct ConnectPoolNodeConfig {
pub dns_name: Option<String>,
pub dns_names: Option<Vec<DnsNameMapping>>,
pub ip_addresses: Option<Vec<IpMapping>>,
pub name: Option<String>,
}Expand description
Details of a single read pool node of a read pool.
This type is not used in any activity, and only used as part of another schema.
Fields§
§dns_name: Option<String>Output only. The DNS name of the read pool node.
dns_names: Option<Vec<DnsNameMapping>>Output only. The list of DNS names used by this read pool node.
ip_addresses: Option<Vec<IpMapping>>Output only. Mappings containing IP addresses that can be used to connect to the read pool node.
name: Option<String>Output only. The name of the read pool node. Doesn’t include the project ID.
Trait Implementations§
Source§impl Clone for ConnectPoolNodeConfig
impl Clone for ConnectPoolNodeConfig
Source§fn clone(&self) -> ConnectPoolNodeConfig
fn clone(&self) -> ConnectPoolNodeConfig
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 ConnectPoolNodeConfig
impl Debug for ConnectPoolNodeConfig
Source§impl Default for ConnectPoolNodeConfig
impl Default for ConnectPoolNodeConfig
Source§fn default() -> ConnectPoolNodeConfig
fn default() -> ConnectPoolNodeConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConnectPoolNodeConfig
impl<'de> Deserialize<'de> for ConnectPoolNodeConfig
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 ConnectPoolNodeConfig
impl Serialize for ConnectPoolNodeConfig
impl Part for ConnectPoolNodeConfig
Auto Trait Implementations§
impl Freeze for ConnectPoolNodeConfig
impl RefUnwindSafe for ConnectPoolNodeConfig
impl Send for ConnectPoolNodeConfig
impl Sync for ConnectPoolNodeConfig
impl Unpin for ConnectPoolNodeConfig
impl UnwindSafe for ConnectPoolNodeConfig
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