Skip to main content

Operation

Struct Operation 

Source
pub struct Operation {
    pub parents: Vec<Cid>,
    pub view: Cid,
    pub predecessors: Option<BTreeMap<String, Vec<ChangeId>>>,
    pub author: String,
    pub agent_id: Option<String>,
    pub task_id: Option<String>,
    pub host: Option<String>,
    pub time: u64,
    pub description: String,
    pub signature: Option<Signature>,
    pub extra: BTreeMap<String, Ipld>,
}
Expand description

A single mutation of repository state.

Fields§

§parents: Vec<Cid>

Parent operations (the op-heads observed when this op started). 0 for the root op; ≥2 after a concurrent-write merge.

§view: Cid

Snapshot of the post-mutation state. A Link<View>.

§predecessors: Option<BTreeMap<String, Vec<ChangeId>>>

For each rewritten commit, the ChangeIds of its predecessors. Keys are UUID-string representations of ChangeIds (DAG-CBOR map keys MUST be strings; SPEC §4.5).

§author: String

Free-form author identifier.

§agent_id: Option<String>

AI-agent identifier (when machine-generated).

§task_id: Option<String>

Task / tool-call identifier for provenance.

§host: Option<String>

Host identifier.

§time: u64

Microseconds since Unix epoch.

§description: String

Short human description (e.g. "commit: feat(auth): add OAuth").

§signature: Option<Signature>

Optional cryptographic signature (SPEC §9.1). Attached via crate::sign::Signer::sign_operation; verified via crate::sign::Verifier::verify_operation.

§extra: BTreeMap<String, Ipld>

Forward-compat extension map (SPEC §3.2).

Implementations§

Source§

impl Operation

Source

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

The _kind discriminator on the wire.

Source

pub fn new( view: Cid, author: impl Into<String>, time: u64, description: impl Into<String>, ) -> Self

Construct an operation with required fields and no parents / optionals.

Source

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

Append a parent operation. 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 with_host(self, host: impl Into<String>) -> Self

Attach a host identifier.

Trait Implementations§

Source§

impl Clone for Operation

Source§

fn clone(&self) -> Operation

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 Operation

Source§

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

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

impl<'de> Deserialize<'de> for Operation

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 Operation

Source§

fn eq(&self, other: &Operation) -> 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 Operation

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 Operation

Source§

impl StructuralPartialEq for Operation

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>,