logo
pub type EscapeFn = Arc<dyn Fn(&str) + Send + Sync + 'static>;
Expand description

This type represents an escape fn, that is a function whose purpose it is to escape potentially problematic characters in a string.

An escape fn is represented as a Box to avoid unnecessary type parameters (and because traits cannot be aliased using type).