pub struct BenchRunTagSessionResponse {
pub tagged: bool,
pub run_id: i64,
pub mcp_session_id: String,
}Expand description
Receipt returned by PATCH /bench-runs/{id}/tag-session. Used to confirm
the coordinator picked up the MCP-session attribution.
Fields§
§tagged: bool§run_id: i64§mcp_session_id: StringTrait Implementations§
Source§impl Clone for BenchRunTagSessionResponse
impl Clone for BenchRunTagSessionResponse
Source§fn clone(&self) -> BenchRunTagSessionResponse
fn clone(&self) -> BenchRunTagSessionResponse
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 BenchRunTagSessionResponse
impl Debug for BenchRunTagSessionResponse
Source§impl<'de> Deserialize<'de> for BenchRunTagSessionResponse
impl<'de> Deserialize<'de> for BenchRunTagSessionResponse
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 BenchRunTagSessionResponse
impl RefUnwindSafe for BenchRunTagSessionResponse
impl Send for BenchRunTagSessionResponse
impl Sync for BenchRunTagSessionResponse
impl Unpin for BenchRunTagSessionResponse
impl UnsafeUnpin for BenchRunTagSessionResponse
impl UnwindSafe for BenchRunTagSessionResponse
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