pub trait DataValue: Debug {
type Type: DataType;
// Required methods
fn data_type(&self) -> Self::Type;
fn data_value_is_copy(&self) -> bool;
}
Expand description
Common trait for data values.
Allows extending DataValue*
With
versions.
See also:
Required Associated Types§
Required Methods§
Sourcefn data_value_is_copy(&self) -> bool
fn data_value_is_copy(&self) -> bool
Whether the data type in the current variant is Copy
.