Struct stdweb::web::event::SocketMessageEvent[][src]

pub struct SocketMessageEvent(_);

A message event informs a WebSocket object that a message has been received.

(JavaScript docs)

Trait Implementations

impl Clone for SocketMessageEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SocketMessageEvent
[src]

Formats the value using the given formatter. Read more

impl PartialEq for SocketMessageEvent
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for SocketMessageEvent
[src]

impl InstanceOf for SocketMessageEvent
[src]

Checks whenever a given Reference if of type Self.

impl AsRef<Reference> for SocketMessageEvent
[src]

Performs the conversion.

impl ReferenceType for SocketMessageEvent
[src]

Converts a given reference into a concrete reference-like wrapper. Doesn't do any type checking; highly unsafe to use! Read more

impl From<SocketMessageEvent> for Reference
[src]

Performs the conversion.

impl TryFrom<SocketMessageEvent> for Reference
[src]

The type returned in the event of a conversion error.

Performs the conversion.

impl TryFrom<Reference> for SocketMessageEvent
[src]

The type returned in the event of a conversion error.

Performs the conversion.

impl<'_r> TryFrom<&'_r Reference> for SocketMessageEvent
[src]

The type returned in the event of a conversion error.

Performs the conversion.

impl TryFrom<Value> for SocketMessageEvent
[src]

The type returned in the event of a conversion error.

Performs the conversion.

impl<'_r> TryFrom<&'_r Value> for SocketMessageEvent
[src]

The type returned in the event of a conversion error.

Performs the conversion.

impl JsSerialize for SocketMessageEvent
[src]

impl IMessageEvent for SocketMessageEvent
[src]

The type of data received with this MessageEvent

The data sent by the message emitter. Read more

A string representing the origin of the message emitter. Read more

A string representing a unique ID for the event. Read more

A MessageEventSource (which can be a WindowProxy, MessagePort, or ServiceWorker object) representing the message emitter. Read more

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 IEvent for SocketMessageEvent
[src]

Indicates whether this event bubbles upward through the DOM. Read more

A historical alias to Event.stopPropagation(). Read more

A historical alias to Event.stopPropagation(). Setting this to true before returning from an event handler will stop propagation of the event. Read more

Indicates whether the event is cancelable. Read more

A reference to the currently registered target of this event. Read more

Indicates whether preventDefault has been called on this event. Read more

Indicates which phase of event flow is currently being evaluated. Read more

Prevents any further listeners from being called for this event. Read more

Stops the propagation of this event to descendants in the DOM. Read more

Returns a reference to the target to which this event was originally registered. Read more

Returns the time in milliseconds at which this event was created. Read more

Indicates whether the event was generated by a user action.

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

Cancels the event if it is cancelable, without stopping further propagation of the event. Read more

impl ConcreteEvent for SocketMessageEvent
[src]

EVENT_TYPE: &'static str = "message"

A string representing the event type. Read more

Auto Trait Implementations