more-di 3.2.1

Provides support for dependency injection (DI)
Documentation
use crate::{Mut, Ref};
use std::{any::Any, borrow::Borrow, marker::PhantomData, ops::Deref};

/// Represents a holder for a keyed service.
#[derive(Debug)]
pub struct KeyedRef<TKey, TSvc: Any + ?Sized> {
    service: Ref<TSvc>,
    _key: PhantomData<TKey>,
}

/// Represents a holder for a keyed, mutable service.
pub type KeyedRefMut<TKey, TSvc> = KeyedRef<TKey, Mut<TSvc>>;

impl<TKey, TSvc: Any + ?Sized> KeyedRef<TKey, TSvc> {
    /// Initializes a new holder for the specified keyed service.
    ///
    /// * `service` - The keyed service reference the holder is for
    pub fn new(service: Ref<TSvc>) -> Self {
        Self {
            service,
            _key: PhantomData,
        }
    }
}

impl<TKey, TSvc: Any + ?Sized> Clone for KeyedRef<TKey, TSvc> {
    fn clone(&self) -> Self {
        Self {
            service: self.service.clone(),
            _key: PhantomData,
        }
    }
}

impl<TKey, TSvc: Any + ?Sized> From<KeyedRef<TKey, TSvc>> for Ref<TSvc> {
    fn from(value: KeyedRef<TKey, TSvc>) -> Self {
        value.service
    }
}

impl<TKey, TSvc: Any + ?Sized> AsRef<TSvc> for KeyedRef<TKey, TSvc> {
    fn as_ref(&self) -> &TSvc {
        self.service.as_ref()
    }
}

impl<TKey, TSvc: Any + ?Sized> Borrow<TSvc> for KeyedRef<TKey, TSvc> {
    fn borrow(&self) -> &TSvc {
        self.service.borrow()
    }
}

impl<TKey, TSvc: Any + ?Sized> Deref for KeyedRef<TKey, TSvc> {
    type Target = TSvc;

    fn deref(&self) -> &Self::Target {
        self.service.deref()
    }
}