pub struct PathConfig {
pub json_ext: String,
pub md_ext: String,
pub decomposed_prefix: String,
pub decomposed_root: PathBuf,
pub skills_decomposed_prefix: String,
pub skills_decomposed_root: PathBuf,
pub catalog_prefix: String,
pub builder_memory_only: bool,
pub default_catalog_dir: PathBuf,
pub write_catalog_prune: bool,
}Expand description
SDK runtime defaults (paths + catalog I/O); override from the host app via configure.
Fields§
§json_ext: String§md_ext: String§decomposed_prefix: String§decomposed_root: PathBuf§skills_decomposed_prefix: String§skills_decomposed_root: PathBuf§catalog_prefix: String§builder_memory_only: bool§default_catalog_dir: PathBuf§write_catalog_prune: boolTrait Implementations§
Source§impl Clone for PathConfig
impl Clone for PathConfig
Source§fn clone(&self) -> PathConfig
fn clone(&self) -> PathConfig
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 moreSource§impl Debug for PathConfig
impl Debug for PathConfig
Source§impl Default for PathConfig
impl Default for PathConfig
impl Eq for PathConfig
Source§impl PartialEq for PathConfig
impl PartialEq for PathConfig
impl StructuralPartialEq for PathConfig
Auto Trait Implementations§
impl Freeze for PathConfig
impl RefUnwindSafe for PathConfig
impl Send for PathConfig
impl Sync for PathConfig
impl Unpin for PathConfig
impl UnsafeUnpin for PathConfig
impl UnwindSafe for PathConfig
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