pub trait QueryFields {
    type FieldsType;

    fn fields() -> Self::FieldsType;
    fn fields_from_path(path: String) -> Self::FieldsType;
}
Expand description

Used by code produced from Toql derive.

Required Associated Types

Required Methods

Implementors