pub struct StandardConnectionFormat {
pub direct_connection: Option<bool>,
}Expand description
Standard connection format.
This type is not used in any activity, and only used as part of another schema.
Fields§
§direct_connection: Option<bool>Optional. Deprecated: Use the additional_options map to specify the directConnection parameter instead. For example: additional_options = {"directConnection": "true"}. Specifies whether the client connects directly to the host[:port] in the connection URI.
Trait Implementations§
Source§impl Clone for StandardConnectionFormat
impl Clone for StandardConnectionFormat
Source§fn clone(&self) -> StandardConnectionFormat
fn clone(&self) -> StandardConnectionFormat
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 StandardConnectionFormat
impl Debug for StandardConnectionFormat
Source§impl Default for StandardConnectionFormat
impl Default for StandardConnectionFormat
Source§fn default() -> StandardConnectionFormat
fn default() -> StandardConnectionFormat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StandardConnectionFormat
impl<'de> Deserialize<'de> for StandardConnectionFormat
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 StandardConnectionFormat
impl Serialize for StandardConnectionFormat
impl Part for StandardConnectionFormat
Auto Trait Implementations§
impl Freeze for StandardConnectionFormat
impl RefUnwindSafe for StandardConnectionFormat
impl Send for StandardConnectionFormat
impl Sync for StandardConnectionFormat
impl Unpin for StandardConnectionFormat
impl UnwindSafe for StandardConnectionFormat
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