object-rainbow 0.0.0-a.65

distributed object model
Documentation
use crate::*;

impl ToOutput for str {
    fn to_output(&self, output: &mut impl Output) {
        if output.is_real() {
            output.write(self.as_bytes());
        }
    }
}

impl ListHashes for str {}
impl Topological for str {}
impl Tagged for str {}
impl MaybeHasNiche for str {
    type MnArray = NoNiche<NicheForUnsized>;
}

impl ByteOrd for str {
    fn bytes_cmp(&self, other: &Self) -> Ordering {
        self.cmp(other)
    }
}