MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / ApplyResult

Class ApplyResult

atomic-core/src/apply/change.rs:169–176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167/// This contains the updated state after successful application.
168#[derive(Debug, Clone)]
169pub struct ApplyResult {
170 /// The new Merkle state of the view
171 pub new_state: Merkle,
172 /// The sequence number of the applied change
173 pub sequence: u64,
174 /// Whether any conflicts were detected
175 pub has_conflicts: bool,
176}
177
178impl ApplyResult {
179 /// Create a new ApplyResult.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected