1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
mod nodes;
#[allow(clippy::module_inception)]
mod schema;
pub mod script;
mod state;
mod occurrences;
pub use nodes::{
ExtensionSchema, GenesisSchema, MetadataStructure, NodeSchema, NodeSubtype, NodeType,
OwnedRightType, OwnedRightsStructure, PublicRightType, PublicRightsStructure, TransitionSchema,
};
pub use occurrences::{Occurrences, OccurrencesError};
pub use schema::{ExtensionType, FieldType, Schema, SchemaId, TransitionType};
pub use script::{ValidationScript, VmType};
pub use state::{DiscreteFiniteFieldFormat, StateSchema, StateType};
pub trait SchemaVerify {
fn schema_verify(&self, root: &Self) -> crate::validation::Status;
}