pub struct McpPlanInstallPlanned {
pub kind: McpPlanInstallPlannedKind,
pub negotiated: CatalogNegotiatedContract,
pub plan: McpInstallPlan,
}Expand description
A computed MCP install plan. Nothing has been applied: the plan describes what installing would change, and the plan handle is what a later apply operation would consume.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§kind: McpPlanInstallPlannedKindDiscriminator: a plan was computed and nothing was changed
negotiated: CatalogNegotiatedContractProtocol version and capabilities the runtime honoured.
plan: McpInstallPlanThe normalised plan.
Trait Implementations§
Source§impl Clone for McpPlanInstallPlanned
impl Clone for McpPlanInstallPlanned
Source§fn clone(&self) -> McpPlanInstallPlanned
fn clone(&self) -> McpPlanInstallPlanned
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 McpPlanInstallPlanned
impl Debug for McpPlanInstallPlanned
Source§impl Default for McpPlanInstallPlanned
impl Default for McpPlanInstallPlanned
Source§fn default() -> McpPlanInstallPlanned
fn default() -> McpPlanInstallPlanned
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for McpPlanInstallPlanned
impl<'de> Deserialize<'de> for McpPlanInstallPlanned
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 McpPlanInstallPlanned
impl RefUnwindSafe for McpPlanInstallPlanned
impl Send for McpPlanInstallPlanned
impl Sync for McpPlanInstallPlanned
impl Unpin for McpPlanInstallPlanned
impl UnsafeUnpin for McpPlanInstallPlanned
impl UnwindSafe for McpPlanInstallPlanned
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