[−][src]Struct stdweb::web::event::LoadEndEvent
The LoadEndEvent is fired when progress has stopped,
e.g. after ProgressErrorEvent, ProgressAbortEvent
or ProgressLoadEvent have been dispatched.
Trait Implementations
impl JsSerialize for LoadEndEvent[src]
impl JsSerialize for LoadEndEventimpl TryFrom<LoadEndEvent> for Reference[src]
impl TryFrom<LoadEndEvent> for Referencetype Error = Void
The type returned in the event of a conversion error.
fn try_from(value: LoadEndEvent) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Reference> for LoadEndEvent[src]
impl TryFrom<Reference> for LoadEndEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: Reference) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Reference> for LoadEndEvent[src]
impl<'_r> TryFrom<&'_r Reference> for LoadEndEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(reference: &Reference) -> Result<Self, Self::Error> | [src] |
impl TryFrom<Value> for LoadEndEvent[src]
impl TryFrom<Value> for LoadEndEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Self, Self::Error> | [src] |
impl<'_r> TryFrom<&'_r Value> for LoadEndEvent[src]
impl<'_r> TryFrom<&'_r Value> for LoadEndEventtype Error = ConversionError
The type returned in the event of a conversion error.
fn try_from(value: &Value) -> Result<Self, Self::Error> | [src] |
impl InstanceOf for LoadEndEvent[src]
impl InstanceOf for LoadEndEventfn instance_of(reference: &Reference) -> bool | [src] |
impl ReferenceType for LoadEndEvent[src]
impl ReferenceType for LoadEndEventunsafe fn from_reference_unchecked(reference: Reference) -> Self | [src] |
impl IEvent for LoadEndEvent[src]
impl IEvent for LoadEndEventfn 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 ConcreteEvent for LoadEndEvent[src]
impl ConcreteEvent for LoadEndEventconst EVENT_TYPE: &'static str[src]
impl IProgressEvent for LoadEndEvent[src]
impl IProgressEvent for LoadEndEventfn 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 From<LoadEndEvent> for Reference[src]
impl From<LoadEndEvent> for Referencefn from(value: LoadEndEvent) -> Self | [src] |
impl Eq for LoadEndEvent[src]
impl Eq for LoadEndEventimpl PartialEq<LoadEndEvent> for LoadEndEvent[src]
impl PartialEq<LoadEndEvent> for LoadEndEventfn eq(&self, other: &LoadEndEvent) -> bool | [src] |
fn ne(&self, other: &LoadEndEvent) -> bool | [src] |
impl AsRef<Reference> for LoadEndEvent[src]
impl AsRef<Reference> for LoadEndEventimpl Clone for LoadEndEvent[src]
impl Clone for LoadEndEventfn clone(&self) -> LoadEndEvent | [src] |
fn clone_from(&mut self, source: &Self) | 1.0.0 [src] |
Performs copy-assignment from source. Read more
impl Debug for LoadEndEvent[src]
impl Debug for LoadEndEventAuto Trait Implementations
impl Send for LoadEndEvent
impl Send for LoadEndEventimpl Sync for LoadEndEvent
impl Sync for LoadEndEventBlanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error> | [src] |
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T | [src] |
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error> | [src] |
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId | [src] |