Trait frunk_core::traits::ToRef

source ·
pub trait ToRef<'a> {
    type Output;

    // Required method
    fn to_ref(&'a self) -> Self::Output;
}
Expand description

An alternative to AsRef that does not force the reference type to be a pointer itself.

This lets us create implementations for our recursive traits that take the resulting Output reference type, without having to deal with strange, spurious overflows that sometimes occur when trying to implement a trait for &’a T (see this comment: https://github.com/lloydmeta/frunk/pull/106#issuecomment-377927198)

This functionality is also provided as an inherent method on HLists and on Coproducts. However, you may find this trait useful in generic contexts.

Required Associated Types§

Required Methods§

source

fn to_ref(&'a self) -> Self::Output

Implementors§

source§

impl<'a> ToRef<'a> for CNil

§

type Output = CNil

source§

impl<'a> ToRef<'a> for HNil

§

type Output = HNil

source§

impl<'a, CH: 'a, CTail> ToRef<'a> for Coproduct<CH, CTail>where CTail: ToRef<'a>,

§

type Output = Coproduct<&'a CH, <CTail as ToRef<'a>>::Output>

source§

impl<'a, H, Tail> ToRef<'a> for HCons<H, Tail>where H: 'a, Tail: ToRef<'a>,

§

type Output = HCons<&'a H, <Tail as ToRef<'a>>::Output>