object-rainbow 0.0.0-a.58

distributed object model
Documentation
use typenum::U0;

use crate::*;

impl ToOutput for Infallible {
    fn to_output(&self, _: &mut impl Output) {
        match *self {}
    }
}

impl InlineOutput for Infallible {}

impl Size for Infallible {
    type Size = U0;
    const SIZE: usize = 0;
}

impl MaybeHasNiche for Infallible {
    type MnArray = SomeNiche<ZeroNiche<U0>>;
}