Itering understands the importance of protecting and safeguarding your privacy. By continuing using this website you agree with our
Privacy Policyand
Terms of Use.
Name | Lookup | Attributes | |
---|---|---|---|
UnexpectedError | 2a00 | ["Option<DispatchError>"] |
Name | Type | Value | |
---|---|---|---|
MaxLen | U32 | 00080000 |
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. |