pub enum ChunkCategory {
Logic,
Data,
Utility,
Api,
Config,
Test,
Docs,
Build,
Ui,
Backend,
Database,
Custom(String),
}Expand description
Category of code chunk
Variants§
Logic
Core logic and business rules
Data
Data types and structures
Utility
Utility and helper functions
Api
API and interface definitions
Config
Configuration and constants
Test
Tests and test utilities
Docs
Documentation
Build
Build and tooling scripts
Ui
UI/Frontend components
Backend
Backend/Server code
Database
Database and persistence
Custom(String)
Custom category
Trait Implementations§
Source§impl Clone for ChunkCategory
impl Clone for ChunkCategory
Source§fn clone(&self) -> ChunkCategory
fn clone(&self) -> ChunkCategory
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 ChunkCategory
impl Debug for ChunkCategory
Source§impl Default for ChunkCategory
impl Default for ChunkCategory
Source§fn default() -> ChunkCategory
fn default() -> ChunkCategory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChunkCategory
impl<'de> Deserialize<'de> for ChunkCategory
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 PartialEq for ChunkCategory
impl PartialEq for ChunkCategory
Source§impl Serialize for ChunkCategory
impl Serialize for ChunkCategory
impl Eq for ChunkCategory
impl StructuralPartialEq for ChunkCategory
Auto Trait Implementations§
impl Freeze for ChunkCategory
impl RefUnwindSafe for ChunkCategory
impl Send for ChunkCategory
impl Sync for ChunkCategory
impl Unpin for ChunkCategory
impl UnwindSafe for ChunkCategory
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