pub struct TemporalAttributeSchemaConfig {
pub enabled: bool,
pub valid_time: ValidTimeSchemaConfig,
pub transaction_time: TransactionTimeSchemaConfig,
pub generate_version_chains: bool,
pub avg_versions_per_entity: f64,
}Expand description
Configuration for temporal attribute generation.
Fields§
§enabled: boolEnable temporal attribute generation.
valid_time: ValidTimeSchemaConfigValid time configuration.
transaction_time: TransactionTimeSchemaConfigTransaction time configuration.
generate_version_chains: boolGenerate version chains for entities.
avg_versions_per_entity: f64Average number of versions per entity.
Trait Implementations§
Source§impl Clone for TemporalAttributeSchemaConfig
impl Clone for TemporalAttributeSchemaConfig
Source§fn clone(&self) -> TemporalAttributeSchemaConfig
fn clone(&self) -> TemporalAttributeSchemaConfig
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<'de> Deserialize<'de> for TemporalAttributeSchemaConfig
impl<'de> Deserialize<'de> for TemporalAttributeSchemaConfig
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 TemporalAttributeSchemaConfig
impl RefUnwindSafe for TemporalAttributeSchemaConfig
impl Send for TemporalAttributeSchemaConfig
impl Sync for TemporalAttributeSchemaConfig
impl Unpin for TemporalAttributeSchemaConfig
impl UnwindSafe for TemporalAttributeSchemaConfig
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