any-fn 0.6.3

Dynamically-typed functions to represent any functions in Rust
Documentation
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>,
}