Struct ply_rs::ply::PropertyDef
source · [−]pub struct PropertyDef {
pub name: String,
pub data_type: PropertyType,
}
Expand description
Defines a property of an element.
Fields
name: String
Unique name of property.
The name should be unique for each property of the same element.
data_type: PropertyType
Data type of the property: You can have simple scalars (ints, floats, etc.) or lists of scalars. In the case of lists you need to decide in which type you want to store the list length and what type to use for the list elemetns.
Implementations
sourceimpl PropertyDef
impl PropertyDef
sourcepub fn new(name: String, data_type: PropertyType) -> Self
pub fn new(name: String, data_type: PropertyType) -> Self
Creates a new property definition.
Trait Implementations
sourceimpl Clone for PropertyDef
impl Clone for PropertyDef
sourcefn clone(&self) -> PropertyDef
fn clone(&self) -> PropertyDef
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PropertyDef
impl Debug for PropertyDef
sourceimpl Key for PropertyDef
impl Key for PropertyDef
sourceimpl PartialEq<PropertyDef> for PropertyDef
impl PartialEq<PropertyDef> for PropertyDef
sourcefn eq(&self, other: &PropertyDef) -> bool
fn eq(&self, other: &PropertyDef) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PropertyDef) -> bool
fn ne(&self, other: &PropertyDef) -> bool
This method tests for !=
.
impl Eq for PropertyDef
impl StructuralEq for PropertyDef
impl StructuralPartialEq for PropertyDef
Auto Trait Implementations
impl RefUnwindSafe for PropertyDef
impl Send for PropertyDef
impl Sync for PropertyDef
impl Unpin for PropertyDef
impl UnwindSafe for PropertyDef
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