pub struct DatasetConfiguration {
pub id: Uuid,
pub dataset_id: Uuid,
pub graph_schema: Option<Value>,
pub custom_prompt: Option<String>,
pub created_at: DateTime<Utc>,
pub updated_at: Option<DateTime<Utc>>,
}Fields§
§id: Uuid§dataset_id: Uuid§graph_schema: Option<Value>§custom_prompt: Option<String>§created_at: DateTime<Utc>§updated_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for DatasetConfiguration
impl Clone for DatasetConfiguration
Source§fn clone(&self) -> DatasetConfiguration
fn clone(&self) -> DatasetConfiguration
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DatasetConfiguration
impl Debug for DatasetConfiguration
Source§impl<'de> Deserialize<'de> for DatasetConfiguration
impl<'de> Deserialize<'de> for DatasetConfiguration
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 DatasetConfiguration
impl RefUnwindSafe for DatasetConfiguration
impl Send for DatasetConfiguration
impl Sync for DatasetConfiguration
impl Unpin for DatasetConfiguration
impl UnsafeUnpin for DatasetConfiguration
impl UnwindSafe for DatasetConfiguration
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