Skip to main content

Commit

Struct Commit 

Source
pub struct Commit {
Show 15 fields pub change_id: ChangeId, pub parents: Vec<Cid>, pub nodes: Cid, pub edges: Cid, pub schema: Cid, pub delta: Option<Cid>, pub indexes: Option<Cid>, pub embeddings: Option<Cid>, pub author: String, pub agent_id: Option<String>, pub task_id: Option<String>, pub time: u64, pub message: String, pub signature: Option<Signature>, pub extra: BTreeMap<String, Ipld>,
}
Expand description

A versioned snapshot of the graph.

Fields§

§change_id: ChangeId

Stable change identity (survives rewrite / rebase / amend).

§parents: Vec<Cid>

Parent commits (empty = root, ≥2 = merge).

§nodes: Cid

Root of the node Prolly tree.

§edges: Cid

Root of the edge Prolly tree.

§schema: Cid

Root of the schema Prolly tree.

§delta: Option<Cid>

Optional DeltaSet link (reserved; not emitted in mnem/0.1).

§indexes: Option<Cid>

Optional secondary-index root (crate::objects::IndexSet, SPEC §4.8). Agents that only need Prolly-lookup by stable id can ignore this; query paths (label / property / adjacency) use it when present.

§embeddings: Option<Cid>

Optional embedding-sidecar Prolly root. Tree keyed by 32-byte NodeCid digest, value = crate::objects::EmbeddingBucket. Lifts dense embedding vectors out of Node canonical bytes so the Node CID stays byte-stable across ORT thread counts (f32 reduction ordering is non-deterministic; vectors drift by the LSB across thread counts). None on commits that carry no embed-bearing nodes.

Intentionally excluded from content_cid. Content CID is the deterministic “what graph is this” digest; including the embeddings root would re-couple it to ORT thread count and undo the determinism guarantee. Two machines re-deriving the same source text on different cores produce the same content_cid, just with per-machine drift in commit.embeddings.

§author: String

Free-form author identifier.

§agent_id: Option<String>

AI agent identifier (when the commit was machine-generated).

§task_id: Option<String>

Task / tool-call identifier for provenance.

§time: u64

Microseconds since Unix epoch.

§message: String

UTF-8 commit message. May be empty.

§signature: Option<Signature>

Optional cryptographic signature.

§extra: BTreeMap<String, Ipld>

Forward-compat extension map (SPEC §3.2).

Implementations§

Source§

impl Commit

Source

pub const KIND: &'static str = "commit"

The _kind discriminator on the wire.

Source

pub fn new( change_id: ChangeId, nodes: Cid, edges: Cid, schema: Cid, author: impl Into<String>, time: u64, message: impl Into<String>, ) -> Self

Build a commit with the required fields, empty optionals / parents / extras.

Source

pub fn with_parent(self, parent: Cid) -> Self

Append a parent commit. Returns self for chaining.

Source

pub fn with_agent(self, agent_id: impl Into<String>) -> Self

Attach an agent identifier.

Source

pub fn with_task(self, task_id: impl Into<String>) -> Self

Attach a task identifier.

Source

pub fn content_cid(&self) -> Result<Cid, CodecError>

(partial): a deterministic CID over only the data-DAG portion of the commit – the three Prolly tree roots (nodes, edges, schema), the optional indexes root, and the parents list. Excludes time, change_id, author, message, agent_id, task_id, signature, and extra.

Two ingest runs against byte-identical input on different machines (or at different times) MUST produce the same content_cid. The standard commit_cid continues to embed wall-clock + UUIDv7 metadata for audit-trail purposes; that CID is intentionally time-varying.

§Errors

Propagates encoding failures from crate::codec::dagcbor::hash_to_cid.

§Migration note

Wire format is unchanged: content_cid is computed from existing fields, so older blockstores stay readable. A follow-up may persist content_cid alongside commit_cid in the operation log for cheap lookup.

Trait Implementations§

Source§

impl Clone for Commit

Source§

fn clone(&self) -> Commit

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for Commit

Source§

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

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

impl<'de> Deserialize<'de> for Commit

Source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

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

impl PartialEq for Commit

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · 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 Commit

Source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

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

impl Eq for Commit

Source§

impl StructuralPartialEq for Commit

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

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