Struct stdweb::web::event::ProgressErrorEvent [−][src]
pub struct ProgressErrorEvent(_);
The ProgressErrorEvent is fired when the progress has failed.
Trait Implementations
impl Clone for ProgressErrorEvent[src]
impl Clone for ProgressErrorEventfn clone(&self) -> ProgressErrorEvent[src]
fn clone(&self) -> ProgressErrorEventReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Debug for ProgressErrorEvent[src]
impl Debug for ProgressErrorEventfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for ProgressErrorEvent[src]
impl PartialEq for ProgressErrorEventfn eq(&self, other: &ProgressErrorEvent) -> bool[src]
fn eq(&self, other: &ProgressErrorEvent) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ProgressErrorEvent) -> bool[src]
fn ne(&self, other: &ProgressErrorEvent) -> boolThis method tests for !=.
impl Eq for ProgressErrorEvent[src]
impl Eq for ProgressErrorEventimpl InstanceOf for ProgressErrorEvent[src]
impl InstanceOf for ProgressErrorEventfn instance_of(reference: &Reference) -> bool[src]
fn instance_of(reference: &Reference) -> boolChecks whenever a given Reference if of type Self.
impl AsRef<Reference> for ProgressErrorEvent[src]
impl AsRef<Reference> for ProgressErrorEventimpl ReferenceType for ProgressErrorEvent[src]
impl ReferenceType for ProgressErrorEventunsafe fn from_reference_unchecked(reference: Reference) -> Self[src]
unsafe fn from_reference_unchecked(reference: Reference) -> SelfConverts a given reference into a concrete reference-like wrapper. Doesn't do any type checking; highly unsafe to use! Read more
impl From<ProgressErrorEvent> for Reference[src]
impl From<ProgressErrorEvent> for Referencefn from(value: ProgressErrorEvent) -> Self[src]
fn from(value: ProgressErrorEvent) -> SelfPerforms the conversion.
impl TryFrom<ProgressErrorEvent> for Reference[src]
impl TryFrom<ProgressErrorEvent> for Referencetype Error = Void
The type returned in the event of a conversion error.
fn try_from(value: ProgressErrorEvent) -> Result<Self, Self::Error>[src]
fn try_from(value: ProgressErrorEvent) -> Result<Self, Self::Error>Performs the conversion.
impl TryFrom<Reference> for ProgressErrorEvent[src]
impl TryFrom<Reference> for ProgressErrorEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: Reference) -> Result<Self, Self::Error>[src]
fn try_from(reference: Reference) -> Result<Self, Self::Error>Performs the conversion.
impl<'_r> TryFrom<&'_r Reference> for ProgressErrorEvent[src]
impl<'_r> TryFrom<&'_r Reference> for ProgressErrorEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: &Reference) -> Result<Self, Self::Error>[src]
fn try_from(reference: &Reference) -> Result<Self, Self::Error>Performs the conversion.
impl TryFrom<Value> for ProgressErrorEvent[src]
impl TryFrom<Value> for ProgressErrorEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error>[src]
fn try_from(value: Value) -> Result<Self, Self::Error>Performs the conversion.
impl<'_r> TryFrom<&'_r Value> for ProgressErrorEvent[src]
impl<'_r> TryFrom<&'_r Value> for ProgressErrorEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error>[src]
fn try_from(value: &Value) -> Result<Self, Self::Error>Performs the conversion.
impl JsSerialize for ProgressErrorEvent[src]
impl JsSerialize for ProgressErrorEventimpl IEvent for ProgressErrorEvent[src]
impl IEvent for ProgressErrorEventfn bubbles(&self) -> bool[src]
fn bubbles(&self) -> boolIndicates whether this event bubbles upward through the DOM. Read more
fn cancel_bubble(&self) -> bool[src]
fn cancel_bubble(&self) -> boolA historical alias to Event.stopPropagation(). Read more
fn set_cancel_bubble(&self, value: bool)[src]
fn set_cancel_bubble(&self, value: bool)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]
fn cancelable(&self) -> boolIndicates whether the event is cancelable. Read more
fn current_target(&self) -> Option<EventTarget>[src]
fn current_target(&self) -> Option<EventTarget>A reference to the currently registered target of this event. Read more
fn default_prevented(&self) -> bool[src]
fn default_prevented(&self) -> boolIndicates whether preventDefault has been called on this event. Read more
fn event_phase(&self) -> EventPhase[src]
fn event_phase(&self) -> EventPhaseIndicates which phase of event flow is currently being evaluated. Read more
fn stop_immediate_propagation(&self)[src]
fn stop_immediate_propagation(&self)Prevents any further listeners from being called for this event. Read more
fn stop_propagation(&self)[src]
fn stop_propagation(&self)Stops the propagation of this event to descendants in the DOM. Read more
fn target(&self) -> Option<EventTarget>[src]
fn target(&self) -> Option<EventTarget>Returns a reference to the target to which this event was originally registered. Read more
fn time_stamp(&self) -> Option<f64>[src]
fn time_stamp(&self) -> Option<f64>Returns the time in milliseconds at which this event was created. Read more
fn is_trusted(&self) -> bool[src]
fn is_trusted(&self) -> boolIndicates whether the event was generated by a user action.
fn event_type(&self) -> String[src]
fn event_type(&self) -> StringReturns 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]
fn prevent_default(&self)Cancels the event if it is cancelable, without stopping further propagation of the event. Read more
impl IProgressEvent for ProgressErrorEvent[src]
impl IProgressEvent for ProgressErrorEventfn length_computable(&self) -> bool[src]
fn length_computable(&self) -> boolIndicates whether the progress is measureable. Read more
fn loaded(&self) -> u64[src]
fn loaded(&self) -> u64Returns the amount of work already performed by the underlying process. Read more
fn total(&self) -> u64[src]
fn total(&self) -> u64Returns the total amount of work that the underlying process will perform. Read more
impl ConcreteEvent for ProgressErrorEvent[src]
impl ConcreteEvent for ProgressErrorEventconst EVENT_TYPE: &'static str
EVENT_TYPE: &'static str = "error"
A string representing the event type. Read more
Auto Trait Implementations
impl Send for ProgressErrorEvent
impl Send for ProgressErrorEventimpl Sync for ProgressErrorEvent
impl Sync for ProgressErrorEvent