pub struct DataConfig {
pub default_rows: usize,
pub default_format: String,
pub locale: String,
pub templates: HashMap<String, String>,
pub rag: RagConfig,
}
Expand description
Data generation configuration
Fields§
§default_rows: usize
Default number of rows to generate
default_format: String
Default output format
locale: String
Faker locale
templates: HashMap<String, String>
Custom faker templates
rag: RagConfig
RAG configuration
Trait Implementations§
Source§impl Clone for DataConfig
impl Clone for DataConfig
Source§fn clone(&self) -> DataConfig
fn clone(&self) -> DataConfig
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 DataConfig
impl Debug for DataConfig
Source§impl Default for DataConfig
impl Default for DataConfig
Source§impl<'de> Deserialize<'de> for DataConfigwhere
DataConfig: Default,
impl<'de> Deserialize<'de> for DataConfigwhere
DataConfig: Default,
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
Auto Trait Implementations§
impl Freeze for DataConfig
impl RefUnwindSafe for DataConfig
impl Send for DataConfig
impl Sync for DataConfig
impl Unpin for DataConfig
impl UnwindSafe for DataConfig
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