pub struct AssembleOptions {
pub output_dir: PathBuf,
pub name: Option<String>,
pub validate: bool,
}Expand description
Options for plugin assembly.
Fields§
§output_dir: PathBufOutput directory for the assembled plugin.
name: Option<String>Override plugin name (default: derived from first skill).
validate: boolRun validation on assembled skills.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AssembleOptions
impl RefUnwindSafe for AssembleOptions
impl Send for AssembleOptions
impl Sync for AssembleOptions
impl Unpin for AssembleOptions
impl UnsafeUnpin for AssembleOptions
impl UnwindSafe for AssembleOptions
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