pub struct ConfigResolvedPaths {
pub root: String,
pub manifest_path: String,
pub config_path: String,
pub sessions_sqlite_path: Option<String>,
pub sessions_jsonl_dir: String,
}Expand description
Resolved paths attached to a config store context.
Fields§
§root: String§manifest_path: String§config_path: String§sessions_sqlite_path: Option<String>§sessions_jsonl_dir: StringTrait Implementations§
Source§impl Clone for ConfigResolvedPaths
impl Clone for ConfigResolvedPaths
Source§fn clone(&self) -> ConfigResolvedPaths
fn clone(&self) -> ConfigResolvedPaths
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 ConfigResolvedPaths
impl Debug for ConfigResolvedPaths
Source§impl<'de> Deserialize<'de> for ConfigResolvedPaths
impl<'de> Deserialize<'de> for ConfigResolvedPaths
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ConfigResolvedPaths
impl RefUnwindSafe for ConfigResolvedPaths
impl Send for ConfigResolvedPaths
impl Sync for ConfigResolvedPaths
impl Unpin for ConfigResolvedPaths
impl UnsafeUnpin for ConfigResolvedPaths
impl UnwindSafe for ConfigResolvedPaths
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