pub struct PlannedFile {
pub rel_path: PathBuf,
pub dest_path: PathBuf,
}Expand description
A single file to be written, with its relative and absolute destination paths.
Fields§
§rel_path: PathBufRelative path within the skill directory (e.g. SKILL.md).
dest_path: PathBufAbsolute (or scope-relative) destination path on disk.
Trait Implementations§
Source§impl Clone for PlannedFile
impl Clone for PlannedFile
Source§fn clone(&self) -> PlannedFile
fn clone(&self) -> PlannedFile
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 PlannedFile
impl RefUnwindSafe for PlannedFile
impl Send for PlannedFile
impl Sync for PlannedFile
impl Unpin for PlannedFile
impl UnsafeUnpin for PlannedFile
impl UnwindSafe for PlannedFile
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