pub struct SkillGenerationResult {
pub created: bool,
pub skill_path: PathBuf,
pub input_tokens: u64,
pub output_tokens: u64,
}Expand description
Result of an agentic skill generation attempt.
Fields§
§created: boolWhether the skill file was created successfully.
skill_path: PathBufThe path where the skill was expected/created.
input_tokens: u64Token usage from the agentic call.
output_tokens: u64Auto Trait Implementations§
impl Freeze for SkillGenerationResult
impl RefUnwindSafe for SkillGenerationResult
impl Send for SkillGenerationResult
impl Sync for SkillGenerationResult
impl Unpin for SkillGenerationResult
impl UnsafeUnpin for SkillGenerationResult
impl UnwindSafe for SkillGenerationResult
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