Skip to main content

Manifest

Struct Manifest 

Source
pub struct Manifest {
    pub version: u32,
    pub generated_at: String,
    pub default_cache: CachePolicy,
    pub entries: BTreeMap<String, ManifestEntry>,
}
Expand description

Complete ISR build manifest — emitted as dist/.ssg/manifest.json.

§Examples

use ssg_core::{build_entry, Manifest};

let mut m = Manifest::new("build-1");
m.insert("/a.html", build_entry(vec!["a.md".into()], &[b"a"], None));
assert_eq!(m.len(), 1);
assert!(m.get("/a.html").is_some());

Fields§

§version: u32

Schema version (currently always MANIFEST_VERSION).

§generated_at: String

Identifier for the build that produced this manifest. Adapters use this to detect a stale KV namespace after a deploy.

§default_cache: CachePolicy

Site-wide cache policy applied when an entry lacks its own cache field.

§entries: BTreeMap<String, ManifestEntry>

URL → entry map. Iteration order is lexicographic.

Implementations§

Source§

impl Manifest

Source

pub fn new(build_id: impl Into<String>) -> Self

Constructs an empty manifest stamped with build_id.

§Examples
use ssg_core::{Manifest, MANIFEST_VERSION};

let m = Manifest::new("build-42");
assert_eq!(m.version, MANIFEST_VERSION);
assert_eq!(m.generated_at, "build-42");
assert!(m.is_empty());
Source

pub fn insert(&mut self, url: impl Into<String>, entry: ManifestEntry)

Inserts (or replaces) an entry.

§Examples
use ssg_core::{build_entry, Manifest};

let mut m = Manifest::new("b");
m.insert("/a.html", build_entry(vec!["a.md".into()], &[b"a"], None));
assert_eq!(m.len(), 1);
Source

pub fn get(&self, url: &str) -> Option<&ManifestEntry>

Returns the entry for url, if any.

§Examples
use ssg_core::{build_entry, Manifest};

let mut m = Manifest::new("b");
m.insert("/a.html", build_entry(vec!["a.md".into()], &[b"a"], None));
assert!(m.get("/a.html").is_some());
assert!(m.get("/missing").is_none());
Source

pub fn len(&self) -> usize

Returns the number of entries.

§Examples
use ssg_core::{build_entry, Manifest};

let mut m = Manifest::new("b");
assert_eq!(m.len(), 0);
m.insert("/a.html", build_entry(vec!["a.md".into()], &[b"a"], None));
assert_eq!(m.len(), 1);
Source

pub fn is_empty(&self) -> bool

Reports whether the manifest holds no entries.

§Examples
use ssg_core::{build_entry, Manifest};

let mut m = Manifest::new("b");
assert!(m.is_empty());
m.insert("/a.html", build_entry(vec!["a.md".into()], &[b"a"], None));
assert!(!m.is_empty());
Source

pub fn to_pretty_json(&self) -> Result<String>

Serialises to canonical pretty JSON (stable key order, 2-space indent). Suitable for direct write to dist/.ssg/manifest.json.

§Errors

Returns the underlying serde_json::Error if any entry is not representable (in practice this is unreachable — every field is a primitive or a String).

§Examples
use ssg_core::Manifest;

let m = Manifest::new("build-1");
let json = m.to_pretty_json().unwrap();
assert!(json.contains("\"version\""));
assert!(json.contains("\"generated_at\": \"build-1\""));
Source

pub fn urls_for_source(&self, source_key: &str) -> Vec<String>

Returns every URL that depends on the given source key.

Used by the invalidation webhook (AC8): given content/posts/foo.md, find every URL whose manifest entry lists it as a source — typically the post itself plus any tag/archive index that includes it.

§Examples
use ssg_core::{build_entry, Manifest};

let mut m = Manifest::new("b");
m.insert(
    "/a.html",
    build_entry(vec!["c/a.md".into()], &[b"A"], None),
);
m.insert(
    "/b.html",
    build_entry(vec!["c/b.md".into()], &[b"B"], None),
);
let deps = m.urls_for_source("c/a.md");
assert_eq!(deps, vec!["/a.html"]);

Trait Implementations§

Source§

impl Clone for Manifest

Source§

fn clone(&self) -> Manifest

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Manifest

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Manifest

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Manifest

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for Manifest

Source§

impl PartialEq for Manifest

Source§

fn eq(&self, other: &Manifest) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for Manifest

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for Manifest

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.