#[non_exhaustive]pub struct ConnectOverCdpOptions {
pub headers: Option<HashMap<String, String>>,
pub slow_mo: Option<f64>,
pub timeout: Option<f64>,
pub no_defaults: Option<bool>,
}Expand description
Options for connect_over_cdp.
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.headers: Option<HashMap<String, String>>§slow_mo: Option<f64>§timeout: Option<f64>§no_defaults: Option<bool>Implementations§
Trait Implementations§
Source§impl Clone for ConnectOverCdpOptions
impl Clone for ConnectOverCdpOptions
Source§fn clone(&self) -> ConnectOverCdpOptions
fn clone(&self) -> ConnectOverCdpOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConnectOverCdpOptions
impl Debug for ConnectOverCdpOptions
Source§impl Default for ConnectOverCdpOptions
impl Default for ConnectOverCdpOptions
Source§fn default() -> ConnectOverCdpOptions
fn default() -> ConnectOverCdpOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ConnectOverCdpOptions
impl RefUnwindSafe for ConnectOverCdpOptions
impl Send for ConnectOverCdpOptions
impl Sync for ConnectOverCdpOptions
impl Unpin for ConnectOverCdpOptions
impl UnsafeUnpin for ConnectOverCdpOptions
impl UnwindSafe for ConnectOverCdpOptions
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