honeycomb_core/attributes/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! attribute modeling code
//!
//! This module contains all code related to generic attribute modelling and handling.

// ------ MODULE DECLARATIONS

mod collections;
mod manager;
mod traits;

pub use collections::AttrSparseVec;
pub use manager::AttrStorageManager;
pub use traits::{AttributeBind, AttributeStorage, AttributeUpdate, UnknownAttributeStorage};

// ------ TESTS

#[allow(clippy::float_cmp)]
#[cfg(test)]
mod tests;