rust-releases-core 0.33.0

Base traits and definitions for rust-releases
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::merge::ContextMerge;

/// Trivial context merge for the unit type.
pub struct UnitContext;

impl ContextMerge<(), ()> for UnitContext {
    type Output = ();

    fn merge_context(&self, _left: (), _right: ()) {}
}