Enum ppapi::AnyVarExperimental [-]  [+] [src]

pub enum AnyVar {
    Null,
    Undefined,
    Bool(bool),
    I32(i32),
    F64(f64),
    String(StringVar),
    Object(ObjectVar),
    Array(ArrayVar),
    Dictionary(DictionaryVar),
    ArrayBuffer(ArrayBufferVar),
}

Variants

Null
Undefined
Bool
I32
F64
String
Object
Array
Dictionary
ArrayBuffer

Methods

impl AnyVar

fn is_ref_counted(&self) -> bool

Trait Implementations

impl Var for AnyVar

fn is_null(&self) -> bool

fn is_undefined(&self) -> bool

fn is_a_bool(&self) -> bool

fn is_an_i32(&self) -> bool

fn is_a_f64(&self) -> bool

fn is_a_string(&self) -> bool

fn is_an_object(&self) -> bool

fn is_an_array(&self) -> bool

fn is_a_dictionary(&self) -> bool

fn is_an_array_buffer(&self) -> bool

fn is_a_resource(&self) -> bool

impl ToVar for AnyVar

fn to_var(&self) -> PP_Var

fn to_any(&self) -> AnyVar

Derived Implementations

impl Show for AnyVar

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Clone for AnyVar

fn clone(&self) -> AnyVar

fn clone_from(&mut self, source: &Self)