pub struct DataConfig {
pub rows: usize,
pub seed: Option<u64>,
pub rag_enabled: bool,
pub rag_context_length: usize,
pub format: OutputFormat,
}
Expand description
Data generation configuration
Fields§
§rows: usize
Number of rows to generate
seed: Option<u64>
Random seed for reproducible generation
rag_enabled: bool
Enable RAG mode
rag_context_length: usize
Maximum RAG context length
format: OutputFormat
Output format
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§fn default() -> DataConfig
fn default() -> DataConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataConfig
impl<'de> Deserialize<'de> for DataConfig
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