pub struct CloneCandidate {
pub source_path: String,
pub dest_path: String,
pub artifact_type: ArtifactType,
pub lockfile_matches: bool,
pub size_bytes: u64,
pub strategy: HydrationStrategy,
pub skip_reason: Option<String>,
pub config_source: ConfigSource,
}Fields§
§source_path: String§dest_path: String§artifact_type: ArtifactType§lockfile_matches: bool§size_bytes: u64§strategy: HydrationStrategy§skip_reason: Option<String>§config_source: ConfigSourceTrait Implementations§
Source§impl Clone for CloneCandidate
impl Clone for CloneCandidate
Source§fn clone(&self) -> CloneCandidate
fn clone(&self) -> CloneCandidate
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 CloneCandidate
impl Debug for CloneCandidate
Auto Trait Implementations§
impl Freeze for CloneCandidate
impl RefUnwindSafe for CloneCandidate
impl Send for CloneCandidate
impl Sync for CloneCandidate
impl Unpin for CloneCandidate
impl UnsafeUnpin for CloneCandidate
impl UnwindSafe for CloneCandidate
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