rusty-tip 0.0.2

Rust library for Nanonis SPM system control via TCP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# RuleBasedPolicy

**Description**: Simple rule-based policy mapping TipState to PolicyDecision.

**Implementation**: 
```rust
pub struct RuleBasedPolicy {
    name: String,
    // Simple 1:1 mapping: TipState -> PolicyDecision
}
```

**Notes**: 
- Primary implementation of [[PolicyEngine]] trait
- Direct 1:1 mapping from [[TipState]] to [[PolicyDecision]]
- Used by [[Controller]] for simple rule-based decisions