pub struct SpecConfigSummary {
pub execution_strategy: String,
pub provider: Option<String>,
pub spec_path: String,
}Expand description
Configuration summary for spec output Excludes full artifacts and packet contents per FR-Claude Code-CLI requirements
Fields§
§execution_strategy: StringExecution strategy used (“controlled” | “external_tool”)
provider: Option<String>LLM provider configured
spec_path: StringSpec directory path
Trait Implementations§
Source§impl Clone for SpecConfigSummary
impl Clone for SpecConfigSummary
Source§fn clone(&self) -> SpecConfigSummary
fn clone(&self) -> SpecConfigSummary
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 SpecConfigSummary
impl Debug for SpecConfigSummary
Source§impl<'de> Deserialize<'de> for SpecConfigSummary
impl<'de> Deserialize<'de> for SpecConfigSummary
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 SpecConfigSummary
impl RefUnwindSafe for SpecConfigSummary
impl Send for SpecConfigSummary
impl Sync for SpecConfigSummary
impl Unpin for SpecConfigSummary
impl UnsafeUnpin for SpecConfigSummary
impl UnwindSafe for SpecConfigSummary
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