#[non_exhaustive]pub enum ConfigError {
Show 13 variants
InvalidCacheSize(usize),
InvalidPendingCacheSize(usize),
InvalidAllowedVersion(u16),
InvalidFieldCount(usize),
InvalidTemplateTotalSize(usize),
InvalidEntriesPerTemplate(usize),
InvalidEntrySize(usize),
InvalidTtlDuration,
EmptyAllowedVersions,
InvalidRecordsPerFlowset(usize),
InvalidPendingTotalBytes {
max_total_bytes: usize,
max_entry_size_bytes: usize,
},
InvalidMaxSources(usize),
InvalidErrorSampleSize(usize),
}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.
InvalidCacheSize(usize)
Template cache size must be greater than 0
InvalidPendingCacheSize(usize)
Pending flow cache size must be greater than 0
InvalidAllowedVersion(u16)
An allowed version number is out of the supported range (0-10)
InvalidFieldCount(usize)
Max field count must be greater than 0
InvalidTemplateTotalSize(usize)
Max template total size must be greater than 0
InvalidEntriesPerTemplate(usize)
Pending flow max entries per template must be greater than 0
InvalidEntrySize(usize)
Pending flow max entry size must be between 1 and 65531 (u16::MAX - 4)
InvalidTtlDuration
TTL duration must be greater than zero
EmptyAllowedVersions
Allowed versions list must not be empty
InvalidRecordsPerFlowset(usize)
Max records per flowset must be greater than 0
InvalidPendingTotalBytes
Pending flow max_total_bytes must be >= max_entry_size_bytes
InvalidMaxSources(usize)
max_sources must be greater than 0
InvalidErrorSampleSize(usize)
max_error_sample_size must be greater than 0
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 · 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
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 PartialEq for ConfigError
impl PartialEq for ConfigError
impl Eq for ConfigError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.