pub trait MetaNames<const METADIM: usize> {
    // Required method
    fn meta_names() -> [String; METADIM];
}
Expand description

Matching field names from each meta data per point to the PointField name. Always make sure to use the same order as in your Into<> implementation to have a correct mapping.

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§