#[non_exhaustive]pub enum Module {
Show 27 variants
Http,
File,
Cmd,
Email,
Kv,
Crypto,
Jwt,
Time,
Id,
Text,
Decimal,
Money,
Json,
Regex,
Codec,
List,
Map,
Diff,
Url,
Validate,
Color,
Unit,
DateRange,
Desensitize,
Filter,
Tree,
System,
}Expand description
Identifies a specific tool module in the TeaQL ecosystem. Used as the key for per-module audit configuration. Application layer can only reference these predefined modules.
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.
Http
File
Cmd
Kv
Crypto
Jwt
Time
Id
Text
Decimal
Money
Json
Regex
Codec
List
Map
Diff
Url
Validate
Color
Unit
DateRange
Desensitize
Filter
Tree
System
Trait Implementations§
impl Copy for Module
impl Eq for Module
impl StructuralPartialEq for Module
Auto Trait Implementations§
impl Freeze for Module
impl RefUnwindSafe for Module
impl Send for Module
impl Sync for Module
impl Unpin for Module
impl UnsafeUnpin for Module
impl UnwindSafe for Module
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