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