pub struct ConfigurationWebsocketStreams {
pub ws_url: Option<String>,
pub reconnect_delay: u64,
pub mode: WebsocketMode,
pub agent: Option<AgentConnector>,
pub time_unit: Option<TimeUnit>,
}Fields§
§ws_url: Option<String>§reconnect_delay: u64§mode: WebsocketMode§agent: Option<AgentConnector>§time_unit: Option<TimeUnit>Implementations§
Source§impl ConfigurationWebsocketStreams
impl ConfigurationWebsocketStreams
Sourcepub fn builder() -> ConfigurationWebsocketStreamsBuilder
pub fn builder() -> ConfigurationWebsocketStreamsBuilder
Creates a builder for ConfigurationWebsocketStreams with default settings.
§Returns
A ConfigurationWebsocketStreamsBuilder initialized with default values
Trait Implementations§
Source§impl Clone for ConfigurationWebsocketStreams
impl Clone for ConfigurationWebsocketStreams
Source§fn clone(&self) -> ConfigurationWebsocketStreams
fn clone(&self) -> ConfigurationWebsocketStreams
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 ConfigurationWebsocketStreams
impl RefUnwindSafe for ConfigurationWebsocketStreams
impl Send for ConfigurationWebsocketStreams
impl Sync for ConfigurationWebsocketStreams
impl Unpin for ConfigurationWebsocketStreams
impl UnwindSafe for ConfigurationWebsocketStreams
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