rust_widgets 0.9.6

Pure Rust cross-platform native GUI library with hardware-adaptive rendering, 60+ widgets, touch/gesture support, i18n, and SVG-pipeline-accurate output
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Render engine module providing native and embedded rendering backends.
//!
//! This module contains the engine trait contract (`EngineTrait`) and concrete
//! implementations for both native desktop rendering and embedded (lightweight)
//! rendering with independent lifecycle management.
/// Embedded runtime state, task queue, and shared engine internals.
pub mod embedded;
/// Embedded render engine with independent lifecycle and resource registry.
pub mod embedded_engine;
/// Render engine trait — unified contract for native and embedded engines.
pub mod engine_trait;
/// Native desktop render engine backed by platform adapters.
pub mod native;
// Re-exports
pub use embedded::*;
pub use embedded_engine::*;
pub use engine_trait::*;
pub use native::*;