pub struct AssembleResult {
pub plugin_dir: PathBuf,
pub skills_count: usize,
pub warnings: Vec<AssembleWarning>,
}Expand description
Result of a successful plugin assembly.
Fields§
§plugin_dir: PathBufPath to the assembled plugin directory.
skills_count: usizeNumber of skills included.
warnings: Vec<AssembleWarning>Non-fatal warnings encountered during assembly.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AssembleResult
impl RefUnwindSafe for AssembleResult
impl Send for AssembleResult
impl Sync for AssembleResult
impl Unpin for AssembleResult
impl UnsafeUnpin for AssembleResult
impl UnwindSafe for AssembleResult
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