pub enum DirInstallMode {
Flat,
Nested,
}Expand description
How a directory entry is deployed to a platform’s target directory.
Flat: each.mdplaced individually intarget_dir/(e.g. claude-code agents)Nested: directory placed astarget_dir/<name>/(e.g. all skill adapters)
Variants§
Trait Implementations§
Source§impl Clone for DirInstallMode
impl Clone for DirInstallMode
Source§fn clone(&self) -> DirInstallMode
fn clone(&self) -> DirInstallMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DirInstallMode
impl Debug for DirInstallMode
Source§impl PartialEq for DirInstallMode
impl PartialEq for DirInstallMode
impl Copy for DirInstallMode
impl Eq for DirInstallMode
impl StructuralPartialEq for DirInstallMode
Auto Trait Implementations§
impl Freeze for DirInstallMode
impl RefUnwindSafe for DirInstallMode
impl Send for DirInstallMode
impl Sync for DirInstallMode
impl Unpin for DirInstallMode
impl UnsafeUnpin for DirInstallMode
impl UnwindSafe for DirInstallMode
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