pub struct SyncTarget {
pub alias: String,
pub path: PathBuf,
pub ignore_policy: IgnorePolicy,
pub explicit_paths: Vec<PathBuf>,
}Expand description
One registered repository that participates in synchronization.
Fields§
§alias: StringRepository alias from the workspace manifest.
path: PathBufCanonical local checkout path.
ignore_policy: IgnorePolicyEffective native discovery policy for this checkout.
explicit_paths: Vec<PathBuf>Explicit repository-relative artifacts that must remain observable through exclusions.
Trait Implementations§
Source§impl Clone for SyncTarget
impl Clone for SyncTarget
Source§fn clone(&self) -> SyncTarget
fn clone(&self) -> SyncTarget
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 SyncTarget
impl Debug for SyncTarget
impl Eq for SyncTarget
Source§impl PartialEq for SyncTarget
impl PartialEq for SyncTarget
impl StructuralPartialEq for SyncTarget
Auto Trait Implementations§
impl Freeze for SyncTarget
impl RefUnwindSafe for SyncTarget
impl Send for SyncTarget
impl Sync for SyncTarget
impl Unpin for SyncTarget
impl UnsafeUnpin for SyncTarget
impl UnwindSafe for SyncTarget
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.