pub struct TunnelUrl {
pub base_url: String,
pub tunnel_id: String,
pub encryption_key: String,
}Expand description
Components extracted from a tunnel URL
Fields§
§base_url: StringFull URL without fragment (for WebSocket connection)
tunnel_id: StringThe tunnel ID extracted from subdomain
encryption_key: StringThe encryption key from the URL fragment
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TunnelUrl
impl RefUnwindSafe for TunnelUrl
impl Send for TunnelUrl
impl Sync for TunnelUrl
impl Unpin for TunnelUrl
impl UnsafeUnpin for TunnelUrl
impl UnwindSafe for TunnelUrl
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