[][src]Enum myxine_core::RefreshMode

pub enum RefreshMode {
    FullReload,
    SetBody,
    Diff,
}

The ways in which a page can be refreshed.

Variants

FullReload

Reload the entire page via window.location.reload().

SetBody

Set the body of the page via document.body = ... (mainly to be used for debugging purposes).

Diff

The default: diff the update against the current page contents to update only the parts of the DOM which require it.

Trait Implementations

impl Clone for RefreshMode[src]

impl Copy for RefreshMode[src]

impl Debug for RefreshMode[src]

impl Eq for RefreshMode[src]

impl Ord for RefreshMode[src]

impl PartialEq<RefreshMode> for RefreshMode[src]

impl PartialOrd<RefreshMode> for RefreshMode[src]

impl StructuralEq for RefreshMode[src]

impl StructuralPartialEq for RefreshMode[src]

Auto Trait Implementations

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>,