pub struct AgenticConfigPaths {
pub local: PathBuf,
pub global: PathBuf,
}Expand description
Resolved paths for config files.
Fields§
§local: PathBufPath to local config (./agentic.toml).
global: PathBufPath to global config (~/.config/agentic/agentic.toml).
Trait Implementations§
Source§impl Clone for AgenticConfigPaths
impl Clone for AgenticConfigPaths
Source§fn clone(&self) -> AgenticConfigPaths
fn clone(&self) -> AgenticConfigPaths
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 moreAuto Trait Implementations§
impl Freeze for AgenticConfigPaths
impl RefUnwindSafe for AgenticConfigPaths
impl Send for AgenticConfigPaths
impl Sync for AgenticConfigPaths
impl Unpin for AgenticConfigPaths
impl UnsafeUnpin for AgenticConfigPaths
impl UnwindSafe for AgenticConfigPaths
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