1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Framework integration modules. //! //! Each sub-module provides [`From<Color>`](crate::Color) conversions for a //! specific visualization framework, gated behind an optional feature flag. #[cfg(feature = "egui-integration")] mod egui; #[cfg(feature = "plotters-integration")] mod plotters; #[cfg(feature = "image-integration")] mod image; #[cfg(feature = "serde-support")] mod serde_support;