/// Filter trait represents a filter statment in a edgeDB select or update query
pubtraitFilter{/// build the filter statment
/// __table_name__ : the edgedb table name
fnto_edgeql(&self, table_name:&str)-> String;/// build the args object
fnto_edge_value(&self)->edgedb_protocol::value::Value;}