Type Alias pipeline::manager::PipelineVersion

source ·
pub type PipelineVersion = Option<TimestampNanosecond>;
Expand description

Pipeline version. An optional timestamp with nanosecond precision. If the version is None, it means the latest version of the pipeline. User can specify the version by providing a timestamp string formatted as iso8601. When it used in cache key, it will be converted to i64 meaning the number of nanoseconds since the epoch.

Aliased Type§

enum PipelineVersion {
    None,
    Some(TimestampNanosecond),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(TimestampNanosecond)

Some value of type T.