pub trait AttributeValue: Clone + PartialEq + Debug + Send + Sync + 'static { }
Expand description

A basic value that can be stored as an attribute in a mesh type.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> AttributeValue for T
where T: Clone + PartialEq + Debug + Send + Sync + 'static,