1
2
3
4
5
6
7
8
use crate::traits::Field;

pub struct QueryText;

impl Field for QueryText {
    const NAME: &'static str = "source_code";
    type Value = String;
}