Expand description
Error types for pdfluent.
One Error enum covers all public operations. The enum is
#[non_exhaustive] to permit additional variants in minor releases
without breaking match exhaustiveness.
Each variant carries:
- a stable
codestring of the formE-<CATEGORY>-<SPECIFIC>, - a deep-linked
docs_urltohttps://pdfluent.com/errors/<code>, - a human-readable message via the
std::fmt::Displayimplementation.
See RFC 0001 §5 for the full contract.
Enums§
- Decryption
Failure Reason - Specific cause of a decryption failure.
- Error
- Top-level error type for all
pdfluentoperations. - Resource
Limit Kind - Discriminator for a
Error::ResourceLimitExceedederror.
Type Aliases§
- Result
- Unified result type for the
pdfluentcrate.