embedded-shadow 0.1.2

Zero-alloc shadow register table with dirty tracking for embedded systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Errors that can occur during shadow table operations.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ShadowError {
    /// Address or length exceeds table bounds.
    OutOfBounds,
    /// Operation attempted with zero length.
    ZeroLength,
    /// Access denied by policy.
    Denied,
    /// Staging buffer capacity exceeded.
    StageFull,
}