Enum secret_tree::FillError
source · #[non_exhaustive]pub enum FillError {
BufferTooSmall {
size: usize,
min_supported_size: usize,
},
BufferTooLarge {
size: usize,
max_supported_size: usize,
},
}
Expand description
Errors that can occur when calling SecretTree::try_fill()
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
BufferTooSmall
The supplied buffer is too small to be filled.
Fields
BufferTooLarge
The supplied buffer is too large to be filled.
Trait Implementations§
source§impl Error for FillError
impl Error for FillError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for FillError
impl RefUnwindSafe for FillError
impl Send for FillError
impl Sync for FillError
impl Unpin for FillError
impl UnwindSafe for FillError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more