pub trait DelegateAdditionOps {
type Internal: InternalAdditionOps + ?Sized;
// Required method
fn graph(&self) -> &Self::Internal;
}pub trait DelegateAdditionOps {
type Internal: InternalAdditionOps + ?Sized;
// Required method
fn graph(&self) -> &Self::Internal;
}