[][src]Struct coffee::load::Progress

pub struct Progress { /* fields omitted */ }

The progress of a task.

Methods

impl Progress[src]

pub fn total_work(&self) -> u32[src]

Get the total amount of work of the related task for this progress.

pub fn completed_work(&self) -> u32[src]

Get the amount of completed work.

The returned value is guaranteed to be in [0, total_work].

pub fn percentage(&self) -> f32[src]

Get the amount of progress as a percentage.

You can use this value directly in your loading screen.

pub fn stage(&self) -> Option<&String>[src]

Get the title of the current stage, if there is one.

You can use this to provide additional feedback to users.

Trait Implementations

impl Eq for Progress[src]

impl PartialEq<Progress> for Progress[src]

impl Debug for Progress[src]

Auto Trait Implementations

impl Send for Progress

impl Sync for Progress

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>,