object-rainbow 0.0.0-a.58

distributed object model
Documentation
use std::ops::Deref;

use crate::*;

/// Wrapper, whose [`ToOutput`] just yields `T`'s [`ToOutput::data_hash`].
#[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Hash, Tagged, Default)]
pub struct Hashed<T>(pub T);

impl<T> Deref for Hashed<T> {
    type Target = T;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl<T: ToOutput> ToOutput for Hashed<T> {
    fn to_output(&self, output: &mut impl Output) {
        if output.is_mangling() {
            self.0.to_output(output);
        }
        self.0.data_hash().to_output(output);
    }
}

impl<T: ToOutput> InlineOutput for Hashed<T> {}

impl<T: ToOutput> Size for Hashed<T> {
    const SIZE: usize = Hash::SIZE;
    type Size = <Hash as Size>::Size;
}