Enum ply_rs::ply::Property
[−]
[src]
pub enum Property {
Char(i8),
UChar(u8),
Short(i16),
UShort(u16),
Int(i32),
UInt(u32),
Float(f32),
Double(f64),
ListChar(Vec<i8>),
ListUChar(Vec<u8>),
ListShort(Vec<i16>),
ListUShort(Vec<u16>),
ListInt(Vec<i32>),
ListUInt(Vec<u32>),
ListFloat(Vec<f32>),
ListDouble(Vec<f64>),
}Wrapper used to implement a dynamic type system as required by the PLY file format.
Variants
Char(i8)UChar(u8)Short(i16)UShort(u16)Int(i32)UInt(u32)Float(f32)Double(f64)ListChar(Vec<i8>)ListUChar(Vec<u8>)ListShort(Vec<i16>)ListUShort(Vec<u16>)ListInt(Vec<i32>)ListUInt(Vec<u32>)ListFloat(Vec<f32>)ListDouble(Vec<f64>)
Trait Implementations
impl Debug for Property[src]
impl PartialEq for Property[src]
fn eq(&self, __arg_0: &Property) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Property) -> bool[src]
This method tests for !=.