rhai/src/call.rs

43 lines
1.1 KiB
Rust
Raw Normal View History

2020-03-08 12:54:02 +01:00
//! Helper module which defines `FnArgs` to make function calling easier.
2017-12-20 22:16:53 +01:00
use crate::any::{Any, Dynamic};
2017-12-20 22:16:53 +01:00
2020-03-04 15:00:01 +01:00
/// Trait that represent arguments to a function call.
pub trait FuncArgs {
/// Convert to a `Vec` of `Dynamic` arguments.
fn into_vec(self) -> Vec<Dynamic>;
2017-12-20 22:16:53 +01:00
}
impl<T: Any> FuncArgs for &mut Vec<T> {
fn into_vec(self) -> Vec<Dynamic> {
self.iter_mut().map(|x| x.into_dynamic()).collect()
2020-03-04 15:00:01 +01:00
}
}
2017-12-20 22:16:53 +01:00
macro_rules! impl_args {
($($p:ident),*) => {
impl<$($p: Any + Clone),*> FuncArgs for ($($p,)*)
2017-12-20 22:16:53 +01:00
{
fn into_vec(self) -> Vec<Dynamic> {
2017-12-20 22:16:53 +01:00
let ($($p,)*) = self;
2019-09-18 12:21:07 +02:00
#[allow(unused_variables, unused_mut)]
2017-12-20 22:16:53 +01:00
let mut v = Vec::new();
$(v.push($p.into_dynamic());)*
2017-12-20 22:16:53 +01:00
v
}
}
impl_args!(@pop $($p),*);
};
(@pop) => {
};
(@pop $head:ident $(, $tail:ident)*) => {
impl_args!($($tail),*);
};
}
#[cfg_attr(rustfmt, rustfmt_skip)]
impl_args!(A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T);