Struct git_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
sourceimpl<'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
sourceimpl<'a> Clone for RemoteProgress<'a>
impl<'a> Clone for RemoteProgress<'a>
sourcefn clone(&self) -> RemoteProgress<'a>
fn clone(&self) -> RemoteProgress<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl<'a> Debug for RemoteProgress<'a>
impl<'a> Debug for RemoteProgress<'a>
sourceimpl<'de: 'a, 'a> Deserialize<'de> for RemoteProgress<'a>
impl<'de: 'a, 'a> Deserialize<'de> for RemoteProgress<'a>
sourcefn 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
sourceimpl<'a> Hash for RemoteProgress<'a>
impl<'a> Hash for RemoteProgress<'a>
sourceimpl<'a> Ord for RemoteProgress<'a>
impl<'a> Ord for RemoteProgress<'a>
sourcefn cmp(&self, other: &RemoteProgress<'a>) -> Ordering
fn cmp(&self, other: &RemoteProgress<'a>) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl<'a> PartialEq<RemoteProgress<'a>> for RemoteProgress<'a>
impl<'a> PartialEq<RemoteProgress<'a>> for RemoteProgress<'a>
sourcefn eq(&self, other: &RemoteProgress<'a>) -> bool
fn eq(&self, other: &RemoteProgress<'a>) -> bool
sourceimpl<'a> PartialOrd<RemoteProgress<'a>> for RemoteProgress<'a>
impl<'a> PartialOrd<RemoteProgress<'a>> for RemoteProgress<'a>
sourcefn partial_cmp(&self, other: &RemoteProgress<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &RemoteProgress<'a>) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl<'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> StructuralEq for RemoteProgress<'a>
impl<'a> StructuralPartialEq for RemoteProgress<'a>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more