Enum sciter::graphics::GRAPHIN_RESULT[][src]

#[repr(C)]
pub enum GRAPHIN_RESULT { PANIC, OK, BAD_PARAM, FAILURE, NOTSUPPORTED, }

Type of the result value for Sciter Graphics functions.

Variants

E.g. not enough memory.

Success.

Bad parameter.

Operation failed, e.g. restore() without save().

Platform does not support the requested feature.

Trait Implementations

impl Debug for GRAPHIN_RESULT
[src]

Formats the value using the given formatter. Read more

impl PartialEq for GRAPHIN_RESULT
[src]

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

This method tests for !=.

Auto Trait Implementations