pub struct RenderArgs {
pub source_root: Option<PathBuf>,
pub target: RenderTarget,
pub product: String,
pub update_golden: bool,
}Fields§
§source_root: Option<PathBuf>Source root containing manifests/, core/, targets/, build/.
Defaults to the current working directory.
target: RenderTargetRender target. Defaults to the product skill tree.
product: StringProduct to render (codex or claude). Defaults to codex for
product renders and to the neutral fallback for --target home-prompt.
update_golden: boolRewrite golden outputs from the just-rendered build tree. Product
renders update tests/golden/<product>/.../expected/; shared target
renders update tests/golden/shared/.
Trait Implementations§
Source§impl Args for RenderArgs
impl Args for RenderArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Debug for RenderArgs
impl Debug for RenderArgs
Source§impl FromArgMatches for RenderArgs
impl FromArgMatches for RenderArgs
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for RenderArgs
impl RefUnwindSafe for RenderArgs
impl Send for RenderArgs
impl Sync for RenderArgs
impl Unpin for RenderArgs
impl UnsafeUnpin for RenderArgs
impl UnwindSafe for RenderArgs
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