pub struct RemoteBridgeConfig {
pub backend_url: String,
pub api_key: String,
pub heartbeat_interval_secs: u32,
pub reconnect_delay_secs: u32,
pub max_reconnect_attempts: u32,
}Expand description
Configuration for the remote bridge (extracted from CLI’s RemoteSettings + BridgeConfig)
Fields§
§backend_url: StringBackend base URL
api_key: StringAPI key for authentication
heartbeat_interval_secs: u32Heartbeat interval in seconds
reconnect_delay_secs: u32Reconnect delay in seconds
max_reconnect_attempts: u32Maximum reconnect attempts (0 = unlimited)
Trait Implementations§
Source§impl Clone for RemoteBridgeConfig
impl Clone for RemoteBridgeConfig
Source§fn clone(&self) -> RemoteBridgeConfig
fn clone(&self) -> RemoteBridgeConfig
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 RemoteBridgeConfig
impl RefUnwindSafe for RemoteBridgeConfig
impl Send for RemoteBridgeConfig
impl Sync for RemoteBridgeConfig
impl Unpin for RemoteBridgeConfig
impl UnsafeUnpin for RemoteBridgeConfig
impl UnwindSafe for RemoteBridgeConfig
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