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]

[src]

Formats the value using the given formatter. Read more

impl PartialOrd for SCDOM_RESULT
[src]

[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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]

[src]

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

1.0.0
[src]

This method tests for !=.

Auto Trait Implementations

impl Send for SCDOM_RESULT

impl Sync for SCDOM_RESULT