pub struct ClonePlanFacts {
pub destination_exists: bool,
pub remote_source: CloneRemoteSource,
}Expand description
Cheap facts the CLI gathers before planning (no clone network/FS body).
Fields§
§destination_exists: boolWhether the destination path already exists on disk.
remote_source: CloneRemoteSourceRemote classification after RemoteTarget::parse and local probes.
Trait Implementations§
Source§impl Clone for ClonePlanFacts
impl Clone for ClonePlanFacts
Source§fn clone(&self) -> ClonePlanFacts
fn clone(&self) -> ClonePlanFacts
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 ClonePlanFacts
impl Debug for ClonePlanFacts
impl Eq for ClonePlanFacts
Source§impl PartialEq for ClonePlanFacts
impl PartialEq for ClonePlanFacts
impl StructuralPartialEq for ClonePlanFacts
Auto Trait Implementations§
impl Freeze for ClonePlanFacts
impl RefUnwindSafe for ClonePlanFacts
impl Send for ClonePlanFacts
impl Sync for ClonePlanFacts
impl Unpin for ClonePlanFacts
impl UnsafeUnpin for ClonePlanFacts
impl UnwindSafe for ClonePlanFacts
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