[][src]Enum myxine_core::Command

pub enum Command {
    Reload,
    Update {
        title: String,
        body: String,
        diff: bool,
    },
    Evaluate {
        script: String,
        statement_mode: bool,
        id: Uuid,
    },
}

A command sent directly to the code running in the browser page to tell it to update or perform some other action.

Variants

Reload

Reload the page completely, i.e. via window.location.reload().

Update

Update the page's dynamic content by setting window.title to the given title, and setting the contents of the <body> to the given body, either by means of a DOM diff (if diff == true) or directly by setting .innerHTML (if diff == false).

Fields of Update

title: String

The new title of the page.

body: String

The new body of the page.

diff: bool

Whether to use some diffing method to increase efficiency in the update (this is usually true outside of some debugging contexts.)

Evaluate

Evaluate some JavaScript code in the page.

Fields of Evaluate

script: String

The text of the JavaScript to evaluate.

statement_mode: bool

If statement_mode == true, then the given script is evaluated exactly as-is; otherwise, it is treated as an expression and wrapped in an implicit return (...);.

id: Uuid

The unique id of the request for evaluation, which will be used to report the result once it is available.

Trait Implementations

impl Clone for Command[src]

impl Debug for Command[src]

impl Serialize for Command[src]

Auto Trait Implementations

impl RefUnwindSafe for Command

impl Send for Command

impl Sync for Command

impl Unpin for Command

impl UnwindSafe for Command

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,