Workflow Registry
Database models for workflow registry storage.
This module defines domain structures for workflow registry storage. These are API-level types; backend-specific models handle database storage.
pub
Derives: Debug, Clone, Serialize, Deserialize
Domain model for a workflow registry entry.
| Name | Type | Description |
|---|---|---|
id |
UniversalUuid |
|
created_at |
UniversalTimestamp |
|
data |
Vec < u8 > |
pub
Derives: Debug, Clone, Serialize, Deserialize
Model for creating new workflow registry entries (domain type).
| Name | Type | Description |
|---|---|---|
data |
Vec < u8 > |
fn new (data : Vec < u8 >) -> Self
Source
pub fn new(data: Vec<u8>) -> Self {
Self { data }
}
pub
Derives: Debug, Clone, Serialize, Deserialize
Model for creating new workflow registry entries with explicit ID and timestamp.
| Name | Type | Description |
|---|---|---|
id |
UniversalUuid |
|
created_at |
UniversalTimestamp |
|
data |
Vec < u8 > |