Expand description
Top-level error type for tfparser-core.
Per CLAUDE.md § Error Handling: every fallible API in this crate returns
Result<T> aliased to std::result::Result<T, Error>. Phase-specific
errors (DiscoveryError, LoaderError, EvalError, …) plug in via
#[from] once their owning modules land. Until then the variants below
are sufficient — none of them are reachable in Phase 1 since no real
pipeline runs yet, but they pin the public error contract so downstream
crates can match on the shape today.
Enums§
- Error
- Top-level error returned by every public
tfparser_coreAPI. - Validation
Error - Reasons a validated newtype constructor (e.g.
crate::Address::new) can reject its input.
Type Aliases§
- Result
- Crate-wide result alias.