Name | Lookup | Attributes | |
|---|---|---|---|
| UnexpectedError | 2a00 |
Name | Type | Value | |
|---|---|---|---|
| MaxLen | u32 | 0x00080000 |
Name | Docs |
|---|---|
| TooLong | Exceeded a generic length limit. The limit could be for any sort of lists of things, including a string. |
| CounterOverflow | The sequence counter for something overflowed. When this happens depends on e.g., the capacity of the identifier type. For example, we might have `pub struct PipId(u32);`, with `u32::MAX` capacity. In practice, these errors will never happen but no code path should result in a panic, so these corner cases need to be covered with an error variant. |