pub struct Progress {
pub current: u64,
pub total: Option<u64>,
pub unit: Option<String>,
}Expand description
Progress information for long-running operations.
§Example
use orcs_component::Progress;
// Determinate progress (known total)
let progress = Progress::new(50, Some(100))
.with_unit("files");
assert_eq!(progress.percentage(), Some(50.0));
// Indeterminate progress (unknown total)
let progress = Progress::new(42, None);
assert_eq!(progress.percentage(), None);Fields§
§current: u64Current progress value.
total: Option<u64>Total value (if known).
unit: Option<String>Unit of measurement (e.g., “files”, “tokens”, “bytes”).
Implementations§
Source§impl Progress
impl Progress
Sourcepub fn percentage(&self) -> Option<f64>
pub fn percentage(&self) -> Option<f64>
Returns the progress as a percentage (0.0 - 100.0).
Returns None if total is unknown or zero.
§Example
use orcs_component::Progress;
let progress = Progress::new(25, Some(100));
assert_eq!(progress.percentage(), Some(25.0));
let progress = Progress::new(42, None);
assert_eq!(progress.percentage(), None);Sourcepub fn is_complete(&self) -> bool
pub fn is_complete(&self) -> bool
Returns true if progress is complete.
§Example
use orcs_component::Progress;
let progress = Progress::new(100, Some(100));
assert!(progress.is_complete());
let progress = Progress::new(50, Some(100));
assert!(!progress.is_complete());Trait Implementations§
Source§impl<'de> Deserialize<'de> for Progress
impl<'de> Deserialize<'de> for Progress
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
Auto Trait Implementations§
impl Freeze for Progress
impl RefUnwindSafe for Progress
impl Send for Progress
impl Sync for Progress
impl Unpin for Progress
impl UnsafeUnpin for Progress
impl UnwindSafe for Progress
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