Enum sciter::dom::SCDOM_RESULT [] [src]

#[repr(C)]
pub enum SCDOM_RESULT { OK, INVALID_HWND, INVALID_HANDLE, PASSIVE_HANDLE, INVALID_PARAMETER, OPERATION_FAILED, OK_NOT_HANDLED, }

Type of the result value for Sciter DOM functions.

Variants

Function completed successfully.

Invalid HWINDOW.

Invalid HELEMENT.

Attempt to use HELEMENT which is not attached to document.

Parameter is invalid, e.g. pointer is null.

Operation failed, e.g. invalid html passed.

Function completed successfully, but no result (e.g. no such attribute at element).

Trait Implementations

impl Debug for SCDOM_RESULT
[src]

Formats the value using the given formatter.

impl PartialOrd for SCDOM_RESULT
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq for SCDOM_RESULT
[src]

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

This method tests for !=.