1
2
3
4
5
use crate::*;

pub trait Compose {
    unsafe fn compose<'a>(implementation: Self) -> (IInspectable, &'a mut Option<IInspectable>);
}