1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
pub trait Table
{
	fn table_name() -> String;
}
pub trait Index
{
	fn index() -> Option<String>
	{
		None
	}
}