1 2 3 4 5 6 7 8 9 10 11
#[cfg(doc)] use crate::IntoAnyFn; use core::marker::PhantomData; /// An immutable reference. /// /// This type is purely an annotator for the [IntoAnyFn] trait /// and never constructed. pub struct Ref<T> { _data: PhantomData<T>, }