Enum ply_rs::ply::ScalarType [] [src]

pub enum ScalarType {
    Char,
    UChar,
    Short,
    UShort,
    Int,
    UInt,
    Float,
    Double,
}

Scalar type used to encode properties in the payload.

For the translation to rust types, see individual documentation.

Variants

Signed 8 bit integer, rust: i8.

Unsigned 8 bit integer, rust: u8.

Signed 16 bit integer, rust: i16.

Unsigned 16 bit integer, rust: u16.

Signed 32 bit integer, rust: i32.

Unsigned 32 bit integer, rust: u32.

32 bit floating point number, rust: f32.

64 bit floating point number, rust: f64.

Trait Implementations

impl Debug for ScalarType
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for ScalarType
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for ScalarType
[src]

impl Clone for ScalarType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more