pub struct ClaudeProjectAgent {
pub definition: NamedAgentDefinition,
pub description: Option<String>,
pub path: PathBuf,
pub raw_source: String,
pub original_model: Option<String>,
pub original_tools: Option<Vec<String>>,
}Expand description
One imported Claude project-agent file.
Fields§
§definition: NamedAgentDefinitionParsed definition usable by Supercode’s named-subagent runtime.
description: Option<String>Optional human-facing description from the Claude frontmatter.
path: PathBufExact source path from which the definition was read.
raw_source: StringExact Markdown source, retained for snapshot/export fidelity.
original_model: Option<String>Original model value before alias resolution (for fidelity reporting).
original_tools: Option<Vec<String>>Original Claude tool names before compatibility mapping.
Trait Implementations§
Source§impl Clone for ClaudeProjectAgent
impl Clone for ClaudeProjectAgent
Source§fn clone(&self) -> ClaudeProjectAgent
fn clone(&self) -> ClaudeProjectAgent
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 ClaudeProjectAgent
impl Debug for ClaudeProjectAgent
impl Eq for ClaudeProjectAgent
Source§impl PartialEq for ClaudeProjectAgent
impl PartialEq for ClaudeProjectAgent
impl StructuralPartialEq for ClaudeProjectAgent
Auto Trait Implementations§
impl Freeze for ClaudeProjectAgent
impl RefUnwindSafe for ClaudeProjectAgent
impl Send for ClaudeProjectAgent
impl Sync for ClaudeProjectAgent
impl Unpin for ClaudeProjectAgent
impl UnsafeUnpin for ClaudeProjectAgent
impl UnwindSafe for ClaudeProjectAgent
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.