Struct rubble_templates_core::functions::SimpleFunction[][src]

pub struct SimpleFunction<F> where
    F: Fn(&[String]) -> String
{ /* fields omitted */ }
Expand description

A wrapper for a Fn(&[String]) -> String, to be used in Evaluator.

Example:

use rubble_templates_core::evaluator::{Evaluator, Function, SyntaxError};
use std::collections::HashMap;
use rubble_templates_core::functions::SimpleFunction;

fn plus_function(parameters: &[String]) -> String {
    parameters.iter()
            .map(|param|
                param.parse::<i32>().unwrap()
            )
            .sum::<i32>()
            .to_string()
}

let mut functions: HashMap<String, Box<dyn Function>> = HashMap::new();
functions.insert("plus".to_string(), SimpleFunction::new(plus_function)); // will be treated as Box<dyn Function>

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.