[][src]Enum rbx_dom_weak::RbxValue

pub enum RbxValue {
    String {
        value: String,
    },
    BinaryString {
        value: Vec<u8>,
    },
    Bool {
        value: bool,
    },
    Int32 {
        value: i32,
    },
    Float32 {
        value: f32,
    },
    Enum {
        value: u32,
    },
    Vector3 {
        value: [f32; 3],
    },
    Vector2 {
        value: [f32; 2],
    },
    Color3 {
        value: [f32; 3],
    },
    Color3uint8 {
        value: [u8; 3],
    },
    Vector3int16 {
        value: [i16; 3],
    },
    Vector2int16 {
        value: [i16; 2],
    },
    CFrame {
        value: [f32; 12],
    },
    PhysicalProperties {
        value: Option<PhysicalProperties>,
    },
    Ref {
        value: Option<RbxId>,
    },
}

Represents a value that can be assigned to the properties of an instance.

Variants

String

Fields of String

value: String
BinaryString

Fields of BinaryString

value: Vec<u8>
Bool

Fields of Bool

value: bool
Int32

Fields of Int32

value: i32
Float32

Fields of Float32

value: f32
Enum

Fields of Enum

value: u32
Vector3

Fields of Vector3

value: [f32; 3]
Vector2

Fields of Vector2

value: [f32; 2]
Color3

Fields of Color3

value: [f32; 3]
Color3uint8

Fields of Color3uint8

value: [u8; 3]
Vector3int16

Fields of Vector3int16

value: [i16; 3]
Vector2int16

Fields of Vector2int16

value: [i16; 2]
CFrame

Fields of CFrame

value: [f32; 12]
PhysicalProperties

Fields of PhysicalProperties

value: Option<PhysicalProperties>
Ref

Fields of Ref

value: Option<RbxId>

Methods

impl RbxValue[src]

pub fn get_type(&self) -> RbxValueType[src]

Returns the type of this value as a RbxValueType.

Trait Implementations

impl PartialEq<RbxValue> for RbxValue[src]

impl Clone for RbxValue[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for RbxValue[src]

impl Serialize for RbxValue[src]

impl<'de> Deserialize<'de> for RbxValue[src]

Auto Trait Implementations

impl Send for RbxValue

impl Sync for RbxValue

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]