pub enum ConfigError {
InvalidRingSize(usize),
InvalidShardCount(usize),
SegmentTooSmall(u64),
ContentTooLarge(usize),
ZeroIndexStride,
HashChainRequiresSingleShard {
shards: usize,
},
}Expand description
Errors that can occur while validating a Config.
Returned by Config::validate. Structured (rather
than a String) so callers can react to a specific misconfiguration. Each
variant carries the offending value.
Variants§
InvalidRingSize(usize)
ring_size is not a power of two or is below 16.
InvalidShardCount(usize)
shards is outside [1, 256].
SegmentTooSmall(u64)
segment_size is below the 1MB minimum.
ContentTooLarge(usize)
max_content_size is above the 64MB ceiling.
ZeroIndexStride
index_stride is zero.
HashChainRequiresSingleShard
hash-chain requires a single shard (a global chain needs single-shard
order). Only present under the hash-chain feature.
Trait Implementations§
Source§impl Clone for ConfigError
impl Clone for ConfigError
Source§fn clone(&self) -> ConfigError
fn clone(&self) -> ConfigError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConfigError
impl Debug for ConfigError
Source§impl Display for ConfigError
impl Display for ConfigError
impl Eq for ConfigError
Source§impl Error for ConfigError
impl Error for ConfigError
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()
Source§impl From<ConfigError> for OpenError
impl From<ConfigError> for OpenError
Source§fn from(source: ConfigError) -> Self
fn from(source: ConfigError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ConfigError
impl PartialEq for ConfigError
Source§fn eq(&self, other: &ConfigError) -> bool
fn eq(&self, other: &ConfigError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConfigError
Auto Trait Implementations§
impl Freeze for ConfigError
impl RefUnwindSafe for ConfigError
impl Send for ConfigError
impl Sync for ConfigError
impl Unpin for ConfigError
impl UnsafeUnpin for ConfigError
impl UnwindSafe for ConfigError
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