daemonic_error 0.1.0

Errors that compose, predict, and leave receipts - Compose: algebraic combination (in active development) - Predict: Glass/Severity - Receipts: audit trail, position, checksum - Reflection: Runtime Reflection through TopologySegment (in active development)
1
2
3
4
5
6
7
8
9
use crate::daemonic::SymbolicAnchor;

/// Meaning through visual representation.
/// TODO: methods for visual similarity, semantic density estimation
pub trait VisualAnchor: SymbolicAnchor {
	/// Is this visual anchor semantically dense?
	/// (Intentionally constructed with encoded meaning)
	fn is_semantically_dense(&self) -> bool { false }
}