pub struct LiveClaudeRunOptions {
pub prompt: String,
pub cwd: PathBuf,
pub agent: ClaudeAgentConfig,
pub title: String,
pub artifact_stem: PathBuf,
pub render_console: bool,
}Expand description
Configuration for a single live Claude print run.
Fields§
§prompt: StringPrompt text.
cwd: PathBufWorking directory.
agent: ClaudeAgentConfigProcess config.
title: StringHTML title.
artifact_stem: PathBufArtifact stem.
render_console: boolRender console lines while collecting.
Implementations§
Trait Implementations§
Source§impl Clone for LiveClaudeRunOptions
impl Clone for LiveClaudeRunOptions
Source§fn clone(&self) -> LiveClaudeRunOptions
fn clone(&self) -> LiveClaudeRunOptions
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 moreAuto Trait Implementations§
impl Freeze for LiveClaudeRunOptions
impl RefUnwindSafe for LiveClaudeRunOptions
impl Send for LiveClaudeRunOptions
impl Sync for LiveClaudeRunOptions
impl Unpin for LiveClaudeRunOptions
impl UnsafeUnpin for LiveClaudeRunOptions
impl UnwindSafe for LiveClaudeRunOptions
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