pub struct TaLocalPaths {
pub exclude_paths: Vec<String>,
}Expand description
Local-scoped .ta/ paths (gitignored, never shared).
Fields§
§exclude_paths: Vec<String>Paths inside .ta/ to exclude from VCS. Defaults to LOCAL_TA_PATHS.
Trait Implementations§
Source§impl Clone for TaLocalPaths
impl Clone for TaLocalPaths
Source§fn clone(&self) -> TaLocalPaths
fn clone(&self) -> TaLocalPaths
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 TaLocalPaths
impl Debug for TaLocalPaths
Source§impl Default for TaLocalPaths
impl Default for TaLocalPaths
Source§impl<'de> Deserialize<'de> for TaLocalPaths
impl<'de> Deserialize<'de> for TaLocalPaths
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 TaLocalPaths
impl RefUnwindSafe for TaLocalPaths
impl Send for TaLocalPaths
impl Sync for TaLocalPaths
impl Unpin for TaLocalPaths
impl UnsafeUnpin for TaLocalPaths
impl UnwindSafe for TaLocalPaths
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