made-core 0.8.0

Domain core of MADE: entities, value objects, events, ports. No IO.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::value_objects::ArtifactId;

use super::ArtifactRecord;

/// Stable artifact-id ordered metadata page.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ArtifactPage {
    pub items: Vec<ArtifactRecord>,
    pub next_after: Option<ArtifactId>,
}