pub struct PullResult {
pub pulled: usize,
pub skipped: usize,
pub not_found: usize,
pub conflicts: Vec<String>,
}Expand description
Result of a sidecar pull operation.
Fields§
§pulled: usizeSuccessfully fetched from remote
skipped: usizeSkipped (local exists, KeepOurs)
not_found: usizeRemote 404 (no sidecar exists)
conflicts: Vec<String>For Notify: paths that differ between local and remote
Trait Implementations§
Source§impl Debug for PullResult
impl Debug for PullResult
Source§impl Default for PullResult
impl Default for PullResult
Source§fn default() -> PullResult
fn default() -> PullResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PullResult
impl RefUnwindSafe for PullResult
impl Send for PullResult
impl Sync for PullResult
impl Unpin for PullResult
impl UnsafeUnpin for PullResult
impl UnwindSafe for PullResult
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