#[non_exhaustive]pub enum ConfigError {
Show 16 variants
InvalidCacheSize(usize),
InvalidPendingCacheSize(usize),
InvalidAllowedVersion(u16),
InvalidFieldCount(usize),
InvalidTemplateTotalSize(usize),
InvalidEntriesPerTemplate(usize),
InvalidEntrySize(usize),
InvalidTtlDuration,
EmptyAllowedVersions,
InvalidRecordsPerFlowset(usize),
InvalidDecodedFieldValueLimit(usize),
InvalidDecodedFieldPayloadByteLimit(usize),
InvalidV9FrameSize(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
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
InvalidDecodedFieldValueLimit(usize)
Decoded field-value message limit must be greater than 0.
InvalidDecodedFieldPayloadByteLimit(usize)
Decoded field-payload-byte message limit must be greater than 0.
InvalidV9FrameSize(usize)
NetFlow v9 frame size 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
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
Source§impl PartialEq for ConfigError
impl PartialEq 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
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
key and return true if they are equal.