pub enum ModuleCategory {
HttpClient,
Database,
WebFramework,
AsyncRuntime,
Logging,
Resilience,
StandardLib,
Other,
}Expand description
Category of external modules for better organization
Variants§
HttpClient
HTTP client libraries (requests, httpx, axios, etc.)
Database
Database/ORM libraries (sqlalchemy, prisma, etc.)
WebFramework
Web frameworks (fastapi, express, gin, etc.)
AsyncRuntime
Async runtimes (asyncio, tokio, etc.)
Logging
Logging libraries
Resilience
Retry/resilience libraries
StandardLib
Standard library
Other
Other external library
Trait Implementations§
Source§impl Clone for ModuleCategory
impl Clone for ModuleCategory
Source§fn clone(&self) -> ModuleCategory
fn clone(&self) -> ModuleCategory
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 ModuleCategory
impl Debug for ModuleCategory
Source§impl Default for ModuleCategory
impl Default for ModuleCategory
Source§impl<'de> Deserialize<'de> for ModuleCategory
impl<'de> Deserialize<'de> for ModuleCategory
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for ModuleCategory
impl Hash for ModuleCategory
Source§impl PartialEq for ModuleCategory
impl PartialEq for ModuleCategory
Source§impl Serialize for ModuleCategory
impl Serialize for ModuleCategory
impl Eq for ModuleCategory
impl StructuralPartialEq for ModuleCategory
Auto Trait Implementations§
impl Freeze for ModuleCategory
impl RefUnwindSafe for ModuleCategory
impl Send for ModuleCategory
impl Sync for ModuleCategory
impl Unpin for ModuleCategory
impl UnsafeUnpin for ModuleCategory
impl UnwindSafe for ModuleCategory
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§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.