pub struct EffectiveDependency {
pub name: SourceName,
pub id: SourceId,
pub spec: SourceSpec,
pub filter: FilterMode,
pub rename: RenameMap,
pub is_overridden: bool,
pub original_git: Option<GitSpec>,
}Expand description
A fully-resolved source with override tracking.
Fields§
§name: SourceName§id: SourceId§spec: SourceSpec§filter: FilterMode§rename: RenameMap§is_overridden: bool§original_git: Option<GitSpec>Trait Implementations§
Source§impl Clone for EffectiveDependency
impl Clone for EffectiveDependency
Source§fn clone(&self) -> EffectiveDependency
fn clone(&self) -> EffectiveDependency
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 EffectiveDependency
impl RefUnwindSafe for EffectiveDependency
impl Send for EffectiveDependency
impl Sync for EffectiveDependency
impl Unpin for EffectiveDependency
impl UnsafeUnpin for EffectiveDependency
impl UnwindSafe for EffectiveDependency
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