[][src]Enum sciter::dom::event::EDIT_CHANGED_REASON

#[repr(C)]pub enum EDIT_CHANGED_REASON {
    BY_INS_CHAR,
    BY_INS_CHARS,
    BY_DEL_CHAR,
    BY_DEL_CHARS,
    BY_UNDO_REDO,
    CHANGE_BY_INS_CONSECUTIVE_CHAR,
    CHANGE_BY_DEL_CONSECUTIVE_CHAR,
    CHANGE_BY_CODE,
}

Edit control change trigger.

Variants

BY_INS_CHAR

Single char insertion.

BY_INS_CHARS

Character range insertion, clipboard.

BY_DEL_CHAR

Single char deletion.

BY_DEL_CHARS

Character range (selection) deletion.

BY_UNDO_REDO

Undo/redo.

CHANGE_BY_INS_CONSECUTIVE_CHAR

Single char insertion, previous character was inserted in previous position.

CHANGE_BY_DEL_CONSECUTIVE_CHAR

Single char removal, previous character was removed in previous position

CHANGE_BY_CODE

Trait Implementations

impl Clone for EDIT_CHANGED_REASON[src]

impl Copy for EDIT_CHANGED_REASON[src]

impl Debug for EDIT_CHANGED_REASON[src]

impl PartialEq<EDIT_CHANGED_REASON> for EDIT_CHANGED_REASON[src]

impl PartialOrd<EDIT_CHANGED_REASON> for EDIT_CHANGED_REASON[src]

impl StructuralPartialEq for EDIT_CHANGED_REASON[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.