pub struct ConfigurationWebsocketApi {
pub api_key: Option<String>,
pub api_secret: Option<String>,
pub ws_url: Option<String>,
pub timeout: u64,
pub reconnect_delay: u64,
pub mode: WebsocketMode,
pub agent: Option<AgentConnector>,
pub private_key: Option<PrivateKey>,
pub private_key_passphrase: Option<String>,
pub time_unit: Option<TimeUnit>,
/* private fields */
}Fields§
§api_key: Option<String>§api_secret: Option<String>§ws_url: Option<String>§timeout: u64§reconnect_delay: u64§mode: WebsocketMode§agent: Option<AgentConnector>§private_key: Option<PrivateKey>§private_key_passphrase: Option<String>§time_unit: Option<TimeUnit>Implementations§
Trait Implementations§
Source§impl Clone for ConfigurationWebsocketApi
impl Clone for ConfigurationWebsocketApi
Source§fn clone(&self) -> ConfigurationWebsocketApi
fn clone(&self) -> ConfigurationWebsocketApi
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 ConfigurationWebsocketApi
impl RefUnwindSafe for ConfigurationWebsocketApi
impl Send for ConfigurationWebsocketApi
impl Sync for ConfigurationWebsocketApi
impl Unpin for ConfigurationWebsocketApi
impl UnwindSafe for ConfigurationWebsocketApi
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