pub struct ConnectionPoolFlags {
pub name: Option<String>,
pub value: Option<String>,
}Expand description
Connection pool flags for Cloud SQL instances managed connection pool configuration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§name: Option<String>Required. The name of the flag.
value: Option<String>Required. The value of the flag. Boolean flags are set to on for true and off for false. This field must be omitted if the flag doesn’t take a value.
Trait Implementations§
Source§impl Clone for ConnectionPoolFlags
impl Clone for ConnectionPoolFlags
Source§fn clone(&self) -> ConnectionPoolFlags
fn clone(&self) -> ConnectionPoolFlags
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 ConnectionPoolFlags
impl Debug for ConnectionPoolFlags
Source§impl Default for ConnectionPoolFlags
impl Default for ConnectionPoolFlags
Source§fn default() -> ConnectionPoolFlags
fn default() -> ConnectionPoolFlags
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConnectionPoolFlags
impl<'de> Deserialize<'de> for ConnectionPoolFlags
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 ConnectionPoolFlags
impl Serialize for ConnectionPoolFlags
impl Part for ConnectionPoolFlags
Auto Trait Implementations§
impl Freeze for ConnectionPoolFlags
impl RefUnwindSafe for ConnectionPoolFlags
impl Send for ConnectionPoolFlags
impl Sync for ConnectionPoolFlags
impl Unpin for ConnectionPoolFlags
impl UnwindSafe for ConnectionPoolFlags
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