Trait boxworks_lang::ast::Func
source · pub trait Func {
const NAME: &'static str;
const FIELD_NAMES: &'static [&'static str];
const DEFAULT_NUM_POS_ARG: usize = 0usize;
}
Expand description
A function like text
or glue
.
Required Associated Constants§
sourceconst FIELD_NAMES: &'static [&'static str]
const FIELD_NAMES: &'static [&'static str]
Ordered list of field names.
Provided Associated Constants§
sourceconst DEFAULT_NUM_POS_ARG: usize = 0usize
const DEFAULT_NUM_POS_ARG: usize = 0usize
When printing, the number of arguments to print positionally.
Object Safety§
This trait is not object safe.