Struct gix_protocol::RemoteProgress
source · pub struct RemoteProgress<'a> {
pub action: &'a BStr,
pub percent: Option<u32>,
pub step: Option<usize>,
pub max: Option<usize>,
}
Expand description
The information usually found in remote progress messages as sent by a git server during fetch, clone and push operations.
Fields§
§action: &'a BStr
The name of the action, like “clone”.
percent: Option<u32>
The percentage to indicate progress, between 0 and 100.
step: Option<usize>
The amount of items already processed.
max: Option<usize>
The maximum expected amount of items. step
/ max
* 100 = percent
.
Implementations§
source§impl<'a> RemoteProgress<'a>
impl<'a> RemoteProgress<'a>
sourcepub fn from_bytes(line: &[u8]) -> Option<RemoteProgress<'_>>
pub fn from_bytes(line: &[u8]) -> Option<RemoteProgress<'_>>
Parse the progress from a typical git progress line
as sent by the remote.
sourcepub fn translate_to_progress(
is_error: bool,
text: &[u8],
progress: &mut impl Progress,
)
pub fn translate_to_progress( is_error: bool, text: &[u8], progress: &mut impl Progress, )
Parse text
, which is interpreted as error if is_error
is true, as RemoteProgress
and call the respective
methods on the given progress
instance.
Trait Implementations§
source§impl<'a> Clone for RemoteProgress<'a>
impl<'a> Clone for RemoteProgress<'a>
source§fn clone(&self) -> RemoteProgress<'a>
fn clone(&self) -> RemoteProgress<'a>
Returns a copy 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<'a> Debug for RemoteProgress<'a>
impl<'a> Debug for RemoteProgress<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for RemoteProgress<'a>
impl<'de: 'a, 'a> Deserialize<'de> for RemoteProgress<'a>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'a> Hash for RemoteProgress<'a>
impl<'a> Hash for RemoteProgress<'a>
source§impl<'a> Ord for RemoteProgress<'a>
impl<'a> Ord for RemoteProgress<'a>
source§fn cmp(&self, other: &RemoteProgress<'a>) -> Ordering
fn cmp(&self, other: &RemoteProgress<'a>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<'a> PartialEq for RemoteProgress<'a>
impl<'a> PartialEq for RemoteProgress<'a>
source§impl<'a> PartialOrd for RemoteProgress<'a>
impl<'a> PartialOrd for RemoteProgress<'a>
source§impl<'a> Serialize for RemoteProgress<'a>
impl<'a> Serialize for RemoteProgress<'a>
impl<'a> Copy for RemoteProgress<'a>
impl<'a> Eq for RemoteProgress<'a>
impl<'a> StructuralPartialEq for RemoteProgress<'a>
Auto Trait Implementations§
impl<'a> Freeze for RemoteProgress<'a>
impl<'a> RefUnwindSafe for RemoteProgress<'a>
impl<'a> Send for RemoteProgress<'a>
impl<'a> Sync for RemoteProgress<'a>
impl<'a> Unpin for RemoteProgress<'a>
impl<'a> UnwindSafe for RemoteProgress<'a>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)