pub struct ConnectorDisconnectResult {
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 Clone for ConnectorDisconnectResult
impl Clone for ConnectorDisconnectResult
Source§impl Debug for ConnectorDisconnectResult
impl Debug for ConnectorDisconnectResult
Source§impl Default for ConnectorDisconnectResult
impl Default for ConnectorDisconnectResult
Source§impl<'de> Deserialize<'de> for ConnectorDisconnectResult
impl<'de> Deserialize<'de> for ConnectorDisconnectResult
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 ConnectorDisconnectResult
impl RefUnwindSafe for ConnectorDisconnectResult
impl Send for ConnectorDisconnectResult
impl Sync for ConnectorDisconnectResult
impl Unpin for ConnectorDisconnectResult
impl UnsafeUnpin for ConnectorDisconnectResult
impl UnwindSafe for ConnectorDisconnectResult
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