pub trait RHListAppendRet<Env, T>: RHList<Env>{
type RetOutput: RHList<Env, OriginalResult = Self::OriginalResult>;
// Required method
fn append_ret(self, t: T) -> Self::RetOutput;
}
Required Associated Types§
type RetOutput: RHList<Env, OriginalResult = Self::OriginalResult>
Required Methods§
fn append_ret(self, t: T) -> Self::RetOutput
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.