korvin-core 0.2.1

The core for korvin frontend framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::impl_mutation_wrapper;

pub mod builder_mutation;
pub mod cleanup_mutation;

impl_mutation_wrapper! {
    enum ElementMutation {
        Builder(builder_mutation::Mutation),
        Cleanup(cleanup_mutation::Mutation)
    },
    enum ElementMutationLog {
        Builder(builder_mutation::Log),
        Cleanup(cleanup_mutation::Log),
    }
}