Struct stdweb::web::event::ProgressEvent
[−]
[src]
pub struct ProgressEvent(_);
The ProgressEvent is fired to indicate that an operation is in progress.
Trait Implementations
impl IEvent for ProgressEvent[src]
fn bubbles(&self) -> bool[src]
Indicates whether this event bubbles upward through the DOM. Read more
fn cancel_bubble(&self) -> bool[src]
A historical alias to Event.stopPropagation(). Read more
fn set_cancel_bubble(&self, value: bool)[src]
A historical alias to Event.stopPropagation(). Setting this to true before returning from an event handler will stop propagation of the event. Read more
fn cancelable(&self) -> bool[src]
Indicates whether the event is cancelable. Read more
fn current_target(&self) -> Option<EventTarget>[src]
A reference to the currently registered target of this event. Read more
fn default_prevented(&self) -> bool[src]
Indicates whether preventDefault has been called on this event. Read more
fn event_phase(&self) -> EventPhase[src]
Indicates which phase of event flow is currently being evaluated. Read more
fn stop_immediate_propagation(&self)[src]
Prevents any further listeners from being called for this event. Read more
fn stop_propagation(&self)[src]
Stops the propagation of this event to descendants in the DOM. Read more
fn target(&self) -> Option<EventTarget>[src]
Returns a reference to the target to which this event was originally registered. Read more
fn time_stamp(&self) -> Option<f64>[src]
Returns the time in milliseconds at which this event was created. Read more
fn is_trusted(&self) -> bool[src]
Indicates whether the event was generated by a user action.
fn event_type(&self) -> String[src]
Returns a string containing the type of event. It is set when the event is constructed and is the name commonly used to refer to the specific event. Read more
fn prevent_default(&self)[src]
Cancels the event if it is cancelable, without stopping further propagation of the event. Read more
impl IProgressEvent for ProgressEvent[src]
fn length_computable(&self) -> bool[src]
Indicates whether the progress is measureable. Read more
fn loaded(&self) -> u64[src]
Returns the amount of work already performed by the underlying process. Read more
fn total(&self) -> u64[src]
Returns the total amount of work that the underlying process will perform. Read more
impl ConcreteEvent for ProgressEvent[src]
const EVENT_TYPE: &'static str
EVENT_TYPE: &'static str = "progress"
A string representing the event type. Read more
impl Debug for ProgressEvent[src]
fn fmt(&self, formatter: &mut Formatter) -> Result[src]
Formats the value using the given formatter.
impl Clone for ProgressEvent[src]
fn clone(&self) -> Self[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl AsRef<Reference> for ProgressEvent[src]
impl<R: TryInto<Reference>> TryFrom<R> for ProgressEvent where
<R as TryInto<Reference>>::Error: Into<Box<Error>>, [src]
<R as TryInto<Reference>>::Error: Into<Box<Error>>,