Trait stdweb::traits::IProgressEvent [] [src]

pub trait IProgressEvent: IEvent {
    fn length_computable(&self) -> bool { ... }
fn loaded(&self) -> u64 { ... }
fn total(&self) -> u64 { ... } }

The IProgressEvent interface represents progress-related events.

(JavaScript docs)

Provided Methods

Indicates whether the progress is measureable.

(JavaScript docs)

Returns the amount of work already performed by the underlying process.

(JavaScript docs)

Returns the total amount of work that the underlying process will perform.

(JavaScript docs)

Implementors