Struct gix_features::progress::Value
source · pub struct Value {
pub step: Arc<AtomicUsize>,
pub done_at: Option<usize>,
pub unit: Option<Unit>,
pub state: State,
}
Available on crate feature
progress
only.Expand description
Progress associated with some item in the progress tree.
Fields§
§step: Arc<AtomicUsize>
The amount of progress currently made
done_at: Option<usize>
The step at which no further progress has to be made.
If unset, the progress is unbounded.
unit: Option<Unit>
The unit associated with the progress.
state: State
Whether progress can be made or not
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Value
impl !RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl !UnwindSafe for Value
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> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more