pub struct ReverseConnectTargetConfig {
pub address: SocketAddr,
pub endpoint_url: String,
pub id: String,
}Expand description
Configuration for a reverse connect target.
Fields§
§address: SocketAddrThe client address the server should connect to.
endpoint_url: StringThe endpoint URL in the reverse hello message, informing the client of which endpoint this is.
id: StringUnique ID for this reverse connect target.
Trait Implementations§
Source§impl Clone for ReverseConnectTargetConfig
impl Clone for ReverseConnectTargetConfig
Source§fn clone(&self) -> ReverseConnectTargetConfig
fn clone(&self) -> ReverseConnectTargetConfig
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 ReverseConnectTargetConfig
impl RefUnwindSafe for ReverseConnectTargetConfig
impl Send for ReverseConnectTargetConfig
impl Sync for ReverseConnectTargetConfig
impl Unpin for ReverseConnectTargetConfig
impl UnsafeUnpin for ReverseConnectTargetConfig
impl UnwindSafe for ReverseConnectTargetConfig
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