[−][src]Struct stdweb::web::event::SocketMessageEvent
A message event informs a WebSocket object that a message has been received.
Trait Implementations
impl JsSerialize for SocketMessageEvent[src]
impl TryFrom<SocketMessageEvent> for Reference[src]
type Error = Void
The type returned in the event of a conversion error.
fn try_from(value: SocketMessageEvent) -> Result<Self, Self::Error>[src]
impl TryFrom<Reference> for SocketMessageEvent[src]
type 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 SocketMessageEvent[src]
type 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 SocketMessageEvent[src]
type 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 SocketMessageEvent[src]
type 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 SocketMessageEvent[src]
fn instance_of(reference: &Reference) -> bool[src]
impl ReferenceType for SocketMessageEvent[src]
unsafe fn from_reference_unchecked(reference: Reference) -> Self[src]
impl IEvent for SocketMessageEvent[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 ConcreteEvent for SocketMessageEvent[src]
const EVENT_TYPE: &'static str[src]
impl IMessageEvent for SocketMessageEvent[src]
type Data = SocketMessageData
The type of data received with this MessageEvent
fn data(&self) -> Self::Data[src]
The data sent by the message emitter. Read more
fn origin(&self) -> String[src]
A string representing the origin of the message emitter. Read more
fn last_event_id(&self) -> String[src]
A string representing a unique ID for the event. Read more
fn source(&self) -> Option<Reference>[src]
A MessageEventSource (which can be a WindowProxy, MessagePort, or ServiceWorker object) representing the message emitter. Read more
fn ports(&self) -> Vec<Reference>[src]
An array of MessagePort objects representing the ports associated with the channel the message is being sent through (where appropriate, e.g. in channel messaging or when sending a message to a shared worker). Read more
impl AsRef<Reference> for SocketMessageEvent[src]
impl From<SocketMessageEvent> for Reference[src]
fn from(value: SocketMessageEvent) -> Self[src]
impl Eq for SocketMessageEvent[src]
impl Clone for SocketMessageEvent[src]
fn clone(&self) -> SocketMessageEvent[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq<SocketMessageEvent> for SocketMessageEvent[src]
fn eq(&self, other: &SocketMessageEvent) -> bool[src]
fn ne(&self, other: &SocketMessageEvent) -> bool[src]
impl Debug for SocketMessageEvent[src]
Auto Trait Implementations
impl Send for SocketMessageEvent
impl Sync for SocketMessageEvent
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> From for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
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, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,