pub struct UnblockResult {
pub ws_url: String,
pub session_id: String,
pub run_id: String,
pub mcp_endpoint: String,
}Expand description
Response from POST /unblock.
Fields§
§ws_url: StringWebSocket URL to connect to.
session_id: StringSession id.
run_id: StringRun id.
mcp_endpoint: StringMCP endpoint (only when enable_mcp was set).
Trait Implementations§
Source§impl Clone for UnblockResult
impl Clone for UnblockResult
Source§fn clone(&self) -> UnblockResult
fn clone(&self) -> UnblockResult
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 moreSource§impl Debug for UnblockResult
impl Debug for UnblockResult
Source§impl Default for UnblockResult
impl Default for UnblockResult
Source§fn default() -> UnblockResult
fn default() -> UnblockResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UnblockResult
impl<'de> Deserialize<'de> for UnblockResult
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 UnblockResult
impl RefUnwindSafe for UnblockResult
impl Send for UnblockResult
impl Sync for UnblockResult
impl Unpin for UnblockResult
impl UnsafeUnpin for UnblockResult
impl UnwindSafe for UnblockResult
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