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

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

Type of the result value for Sciter Graphics functions.

Variants

PANIC

E.g. not enough memory.

OK

Success.

BAD_PARAM

Bad parameter.

FAILURE

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

NOTSUPPORTED

Platform does not support the requested feature.

Trait Implementations

impl Debug for GRAPHIN_RESULT[src]

impl Display for GRAPHIN_RESULT[src]

impl Error for GRAPHIN_RESULT[src]

impl PartialEq<GRAPHIN_RESULT> for GRAPHIN_RESULT[src]

impl StructuralPartialEq for GRAPHIN_RESULT[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> ToString for T where
    T: Display + ?Sized
[src]

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.