Expand description
C-compatible (#[repr(C)]) error types for CSS parsing failures.
Mirrors core::num::ParseFloatError and core::num::ParseIntError for FFI use,
and provides generic invalid-value error wrappers.
Structs§
- Invalid
Value Err - Simple “invalid value” error, used for basic parsing failures
- Invalid
Value ErrOwned - Owned version of InvalidValueErr with AzString.
- Parse
Float Error With Input - Wrapper for a ParseFloatError paired with the input string that failed. Used by multiple Owned error enums that need to store both the error and input.
- Wrong
Component Count Error - Wrapper for WrongNumberOfComponents errors in CSS filter/transform parsing.
Enums§
- Parse
Float Error - C-compatible enum mirroring
core::num::ParseFloatErrorinternals. - Parse
IntError - C-compatible enum mirroring
core::num::ParseIntErrorinternals.