Expand description
A collection of types and utilities for doing type erasure, using Any types and downcasting. This makes it convenient to pass values over FFI, because generic types are erased, and everything has a single concrete type.
This is made possible by glue functions which can take the Any representation and downcast to the correct concrete type.
Re-exports§
pub use super::*;
Modules§
- partials 🔒
Macros§
Structs§
- A struct that can wrap any object.
- A struct wrapping a Box<dyn Any + Send + Sync>, with closures allowing it to implement Clone, PartialEq and Debug.
Traits§
- A trait for something that can be downcast to a concrete type.
Functions§
Type Aliases§
- A Measurement with all generic types filled by Any types. This is the type of Measurements passed back and forth over FFI.
- A Queryable with all generic types filled by Any types. This is the type of Queryables passed back and forth over FFI.
- A Transformation with all generic types filled by Any types. This is the type of Transformation passed back and forth over FFI.