pub struct ProgressInfo<'a> {
pub value: f64,
pub detail: Option<&'a CStr>,
}
Expand description
Information about capture progress
Fields§
§value: f64
Progress percentage (0.0-100.0)
detail: Option<&'a CStr>
Optional detailed message about the progress
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ProgressInfo<'a>
impl<'a> RefUnwindSafe for ProgressInfo<'a>
impl<'a> Send for ProgressInfo<'a>
impl<'a> Sync for ProgressInfo<'a>
impl<'a> Unpin for ProgressInfo<'a>
impl<'a> UnwindSafe for ProgressInfo<'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