pebble-engine 0.2.1

A modular, ECS-style graphics/app framework for Rust.
Documentation
1
2
3
4
5
6
7
8
9
/// Errors that can occur when acquiring a frame from the backend.
#[derive(Debug)]
pub enum AcquireError {
    /// The acquire failed temporarily. The frame is skipped but rendering can
    /// continue on the next tick (e.g. the swapchain is out of date).
    Transient,
    /// An unrecoverable error occurred. Includes a human-readable description.
    Fatal(String),
}