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
Char
Signed 8 bit integer, rust: i8
.
UChar
Unsigned 8 bit integer, rust: u8
.
Short
Signed 16 bit integer, rust: i16
.
UShort
Unsigned 16 bit integer, rust: u16
.
Int
Signed 32 bit integer, rust: i32
.
UInt
Unsigned 32 bit integer, rust: u32
.
Float
32 bit floating point number, rust: f32
.
Double
64 bit floating point number, rust: f64
.
Trait Implementations
impl Debug for ScalarType
[src]
impl PartialEq for ScalarType
[src]
fn eq(&self, __arg_0: &ScalarType) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Eq for ScalarType
[src]
impl Clone for ScalarType
[src]
fn clone(&self) -> ScalarType
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more