pub enum Property {
}
Expand description
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 StructuralPartialEq for Property
Auto Trait Implementations
impl RefUnwindSafe for Property
impl Send for Property
impl Sync for Property
impl Unpin for Property
impl UnwindSafe for Property
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more