Enum twig::runtime::ErrorMessage [] [src]

pub enum ErrorMessage {
    InvalidArgumentCount {
        expected: usize,
        found: usize,
    },
}

Runtime error message.

Variants

InvalidArgumentCount

Callable invoked with argument count that does not match defined count.

Fields

expected: usize
found: usize

Trait Implementations

impl Debug for ErrorMessage
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.