pub struct TaPathConfig {
pub project: TaProjectPaths,
pub local: TaLocalPaths,
}Expand description
TA project/local file classification configuration (v0.14.3.5).
Specifies which .ta/ files belong to the project (committed to VCS)
and which are machine-local only (gitignored). Populated at ta init.
Fields§
§project: TaProjectPaths.ta/ file paths that belong to the project (VCS-committed, shared with team).
local: TaLocalPaths.ta/ file paths that are machine-local only (gitignored, never shared).
Trait Implementations§
Source§impl Clone for TaPathConfig
impl Clone for TaPathConfig
Source§fn clone(&self) -> TaPathConfig
fn clone(&self) -> TaPathConfig
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 TaPathConfig
impl Debug for TaPathConfig
Source§impl Default for TaPathConfig
impl Default for TaPathConfig
Source§fn default() -> TaPathConfig
fn default() -> TaPathConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaPathConfig
impl<'de> Deserialize<'de> for TaPathConfig
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 TaPathConfig
impl RefUnwindSafe for TaPathConfig
impl Send for TaPathConfig
impl Sync for TaPathConfig
impl Unpin for TaPathConfig
impl UnsafeUnpin for TaPathConfig
impl UnwindSafe for TaPathConfig
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