[][src]Struct sciter::types::VALUE

#[repr(C)]pub struct VALUE {
    pub t: VALUE_TYPE,
    pub u: UINT,
    pub d: UINT64,
}

A JSON value.

An opaque union that can hold different types of values: numbers, strings, arrays, objects, etc.

Fields

t: VALUE_TYPE

Value type.

u: UINT

Value unit type.

d: UINT64

Value data.

Trait Implementations

impl Clone for VALUE[src]

impl Debug for VALUE[src]

impl Default for VALUE[src]

impl<'a> From<&'a VALUE> for Value[src]

Value from a native VALUE object.

Auto Trait Implementations

impl RefUnwindSafe for VALUE

impl Send for VALUE

impl Sync for VALUE

impl Unpin for VALUE

impl UnwindSafe for VALUE

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.