Expand description
Crate-wide error type for agent-mesh-protocol.
Every fallible operation in this crate returns Result<T> (an
alias for Result<T, MeshError>). The variants are deliberately
coarse — they cover what went wrong well enough that the CLI can
print a useful message, without forcing every caller to enumerate
a giant matrix of internal failure modes.
Enums§
- Mesh
Error - Errors that can arise from agent-mesh primitives.
Type Aliases§
- Result
- Convenience alias for the crate’s
Resulttype.