We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e791ee3 commit 15d224eCopy full SHA for 15d224e
CHANGELOG.md
@@ -4,6 +4,8 @@
4
5
## Unreleased
6
7
+- Added check for too big items that won't ever fit in flash so it returns a good clear error.
8
+
9
# 2.0.1 06-05-24
10
11
- Implemented the `get_len` function for all built-in key types
src/lib.rs
@@ -387,6 +387,8 @@ pub enum Error<S> {
387
SerializationError(SerializationError),
388
/// The item does not fit in flash, ever.
389
/// This is different from [Error::FullStorage] because this item is too big to fit even in empty flash.
390
+ ///
391
+ /// See the readme for more info about the constraints on item sizes.
392
ItemTooBig,
393
}
394
0 commit comments