1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
use std::marker::PhantomData;
/// Defines the behavior of something that configures [`Options`](crate::Options).
///
/// # Remarks
///
/// These are all run first
pub trait ConfigureOptions<T> {
    /// Configures the corresponding options.
    ///
    /// # Arguments
    ///
    /// * `name` - The optional name of the options to configure
    /// * `options` - The options to configure
    fn configure(&self, name: Option<&str>, options: &mut T);
}
/// Defines the behavior of something that configures [`Options`](crate::Options).
///
/// # Remarks
///
/// These are all run last
pub trait PostConfigureOptions<T> {
    /// Configures the corresponding options.
    ///
    /// # Arguments
    ///
    /// * `name` - The optional name of the options to configure
    /// * `options` - The options to configure
    fn post_configure(&self, name: Option<&str>, options: &mut T);
}
/// Creates and returns [options configuration](ConfigureOptions) for the specified action.
///
/// # Arguments
///
/// * `action` - The configuration action
pub fn configure<T, F>(action: F) -> impl ConfigureOptions<T>
where
    F: Fn(Option<&str>, &mut T),
{
    _ConfigureOptions::new(action)
}
/// Creates and returns [options post-configuration](PostConfigureOptions) for the specified action.
///
/// # Arguments
///
/// * `action` - The post configuration action
pub fn post_configure<T, F>(action: F) -> impl PostConfigureOptions<T>
where
    F: Fn(Option<&str>, &mut T),
{
    _ConfigureOptions::new(action)
}
struct _ConfigureOptions<TOptions, TAction>
where
    TAction: Fn(Option<&str>, &mut TOptions),
{
    action: TAction,
    _marker: PhantomData<TOptions>,
}
impl<TOptions, TAction> _ConfigureOptions<TOptions, TAction>
where
    TAction: Fn(Option<&str>, &mut TOptions),
{
    fn new(action: TAction) -> Self {
        Self {
            action,
            _marker: PhantomData,
        }
    }
}
impl<TOptions, TAction> ConfigureOptions<TOptions> for _ConfigureOptions<TOptions, TAction>
where
    TAction: Fn(Option<&str>, &mut TOptions),
{
    fn configure(&self, name: Option<&str>, options: &mut TOptions) {
        (self.action)(name, options)
    }
}
impl<TOptions, TAction> PostConfigureOptions<TOptions> for _ConfigureOptions<TOptions, TAction>
where
    TAction: Fn(Option<&str>, &mut TOptions),
{
    fn post_configure(&self, name: Option<&str>, options: &mut TOptions) {
        (self.action)(name, options)
    }
}