Skip to main content

caretta_sync_core/utils/
mergeable.rs

1#[cfg(feature = "macros")]
2pub use caretta_sync_macros::Mergeable;
3pub trait Mergeable: Sized {
4    fn merge(&mut self, other: Self);
5}