p2panda-rs 0.7.0

All the things a panda needs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: AGPL-3.0-or-later

//! Intermediary operation type which was not checked against a schema yet.
//!
//! The `PlainOperation` serves as the binding data type which is an already decoded operation
//! which has not been checked against a `Schema` instance yet. This allows us to a) already read
//! header information from it, like the schema id, operation action or -version b) efficiently
//! deserialize even when we don't know the schema.
mod plain_fields;
mod plain_operation;
mod plain_value;

pub use plain_fields::PlainFields;
pub use plain_operation::PlainOperation;
pub use plain_value::PlainValue;