#[non_exhaustive]pub struct ConnectionPoolFlags {
pub name: String,
pub value: String,
/* private fields */
}Expand description
Connection pool flags for Cloud SQL instances managed connection pool configuration.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. The name of the flag.
value: StringRequired. 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.
Implementations§
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 Message for ConnectionPoolFlags
impl Message for ConnectionPoolFlags
Source§impl PartialEq for ConnectionPoolFlags
impl PartialEq for ConnectionPoolFlags
impl StructuralPartialEq 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