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
16
use crate::impl_complex_mutation_wrapper;

pub mod marker;
pub mod modify;

impl_complex_mutation_wrapper! {
    reverse = super::builder_mutation::Mutation,
    enum ElementCleanupMutation {
        Marker(marker::Mutation),
        Modify(modify::Mutation),
    },
    enum ElementCleanupMutationLog {
        Marker(marker::Log),
        Modify(modify::Log),
    }
}