rune 0.14.2

The Rune Language, an embeddable dynamic programming language for Rust.
Documentation
use crate::alloc;
#[cfg(feature = "doc")]
use crate::alloc::prelude::*;
use crate::function_meta::{AssociatedName, ToFieldFunction, ToInstance};
use crate::hash::Hash;
use crate::runtime::Protocol;

#[doc(inline)]
pub use rune_core::params::Params;

impl<T, const N: usize> ToInstance for Params<T, N>
where
    T: ToInstance,
{
    #[inline]
    fn to_instance(self) -> alloc::Result<AssociatedName> {
        let info = self.name.to_instance()?;

        Ok(AssociatedName {
            kind: info.kind,
            function_parameters: Hash::parameters(self.parameters),
            #[cfg(feature = "doc")]
            parameter_types: self.parameters.iter().copied().try_collect()?,
        })
    }
}

impl<T, const N: usize> ToFieldFunction for Params<T, N>
where
    T: ToFieldFunction,
{
    #[inline]
    fn to_field_function(self, protocol: &'static Protocol) -> alloc::Result<AssociatedName> {
        let info = self.name.to_field_function(protocol)?;

        Ok(AssociatedName {
            kind: info.kind,
            function_parameters: Hash::parameters(self.parameters),
            #[cfg(feature = "doc")]
            parameter_types: self.parameters.iter().copied().try_collect()?,
        })
    }
}