pub struct SessionConnectorsDisconnectResult {
pub disconnected: bool,
pub status: ConnectorStatus,
}Expand description
Authoritative result after disconnect and MCP reconciliation.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§disconnected: boolWhether the service accepted the idempotent disconnect.
status: ConnectorStatusFresh authoritative session state after removing Connector-owned MCP servers.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SessionConnectorsDisconnectResult
impl<'de> Deserialize<'de> for SessionConnectorsDisconnectResult
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 SessionConnectorsDisconnectResult
impl RefUnwindSafe for SessionConnectorsDisconnectResult
impl Send for SessionConnectorsDisconnectResult
impl Sync for SessionConnectorsDisconnectResult
impl Unpin for SessionConnectorsDisconnectResult
impl UnsafeUnpin for SessionConnectorsDisconnectResult
impl UnwindSafe for SessionConnectorsDisconnectResult
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