type TransformFn<'b> = Option<Box<dyn Fn(&'b Binding, &'b Value) -> Option<Value> + Send + Sync + 'static>>;
enum TransformFn<'b> { None, Some(Box<dyn Fn(&'b Binding, &'b Value) -> Option<Value> + Sync + Send>), }
No value.
Some value of type T.
T