pub struct ConnectorClientOptions {
pub relay_connect_url: String,
pub headers: Vec<(String, String)>,
pub heartbeat_interval: Duration,
pub heartbeat_ack_timeout: Duration,
pub reconnect_min_delay: Duration,
pub reconnect_max_delay: Duration,
}Fields§
§relay_connect_url: String§headers: Vec<(String, String)>§heartbeat_interval: Duration§heartbeat_ack_timeout: Duration§reconnect_min_delay: Duration§reconnect_max_delay: DurationImplementations§
Trait Implementations§
Source§impl Clone for ConnectorClientOptions
impl Clone for ConnectorClientOptions
Source§fn clone(&self) -> ConnectorClientOptions
fn clone(&self) -> ConnectorClientOptions
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 moreAuto Trait Implementations§
impl Freeze for ConnectorClientOptions
impl RefUnwindSafe for ConnectorClientOptions
impl Send for ConnectorClientOptions
impl Sync for ConnectorClientOptions
impl Unpin for ConnectorClientOptions
impl UnsafeUnpin for ConnectorClientOptions
impl UnwindSafe for ConnectorClientOptions
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