Struct git2::Progress [−][src]
pub struct Progress<'a> { /* fields omitted */ }Struct representing the progress by an in-flight transfer.
Methods
impl<'a> Progress<'a>[src]
impl<'a> Progress<'a>pub fn total_objects(&self) -> usize[src]
pub fn total_objects(&self) -> usizeNumber of objects in the packfile being downloaded
pub fn indexed_objects(&self) -> usize[src]
pub fn indexed_objects(&self) -> usizeReceived objects that have been hashed
pub fn received_objects(&self) -> usize[src]
pub fn received_objects(&self) -> usizeObjects which have been downloaded
pub fn local_objects(&self) -> usize[src]
pub fn local_objects(&self) -> usizeLocally-available objects that have been injected in order to fix a thin pack.
pub fn total_deltas(&self) -> usize[src]
pub fn total_deltas(&self) -> usizeNumber of deltas in the packfile being downloaded
pub fn indexed_deltas(&self) -> usize[src]
pub fn indexed_deltas(&self) -> usizeReceived deltas that have been hashed.
pub fn received_bytes(&self) -> usize[src]
pub fn received_bytes(&self) -> usizeSize of the packfile received up to now
pub fn to_owned(&self) -> Progress<'static>[src]
pub fn to_owned(&self) -> Progress<'static>Convert this to an owned version of Progress.