gel_errors/
fields.rs

1use crate::traits::Field;
2
3pub struct QueryText;
4
5impl Field for QueryText {
6    const NAME: &'static str = "source_code";
7    type Value = String;
8}