pub struct TemporalAttributeConfig {
pub enabled: bool,
pub valid_time: ValidTimeConfig,
pub transaction_time: TransactionTimeConfig,
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: ValidTimeConfigValid time configuration.
transaction_time: TransactionTimeConfigTransaction 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 TemporalAttributeConfig
impl Clone for TemporalAttributeConfig
Source§fn clone(&self) -> TemporalAttributeConfig
fn clone(&self) -> TemporalAttributeConfig
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 TemporalAttributeConfig
impl Debug for TemporalAttributeConfig
Source§impl Default for TemporalAttributeConfig
impl Default for TemporalAttributeConfig
Source§impl<'de> Deserialize<'de> for TemporalAttributeConfig
impl<'de> Deserialize<'de> for TemporalAttributeConfig
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 TemporalAttributeConfig
impl RefUnwindSafe for TemporalAttributeConfig
impl Send for TemporalAttributeConfig
impl Sync for TemporalAttributeConfig
impl Unpin for TemporalAttributeConfig
impl UnwindSafe for TemporalAttributeConfig
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