pub struct RuntimeTunnelDebugSession {
pub session_id: String,
pub platform: String,
pub tunnel_url: String,
pub client_token: String,
pub kind: DebugSessionKind,
pub protocol_version: u32,
pub expires_at: Option<String>,
}Fields§
§session_id: StringServer-assigned session id.
platform: Stringlocal for v1.
tunnel_url: StringAbsolute wss://…/v1/debug/sessions/<sid>/runtime-client URL.
client_token: StringBearer the CLI presents on the WebSocket upgrade.
kind: DebugSessionKindRuntime operation this tunnel accepts.
protocol_version: u32Runtime frame protocol version.
expires_at: Option<String>RFC3339 expiry.
Trait Implementations§
Source§impl Clone for RuntimeTunnelDebugSession
impl Clone for RuntimeTunnelDebugSession
Source§fn clone(&self) -> RuntimeTunnelDebugSession
fn clone(&self) -> RuntimeTunnelDebugSession
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RuntimeTunnelDebugSession
impl Debug for RuntimeTunnelDebugSession
Source§impl<'de> Deserialize<'de> for RuntimeTunnelDebugSession
impl<'de> Deserialize<'de> for RuntimeTunnelDebugSession
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RuntimeTunnelDebugSession
impl RefUnwindSafe for RuntimeTunnelDebugSession
impl Send for RuntimeTunnelDebugSession
impl Sync for RuntimeTunnelDebugSession
impl Unpin for RuntimeTunnelDebugSession
impl UnsafeUnpin for RuntimeTunnelDebugSession
impl UnwindSafe for RuntimeTunnelDebugSession
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