db-helpers 1.5.0

Various macros to help with database queries and tables
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub trait FieldCheckable
{
	fn is_valid_column_name(name: &str) -> bool;
}
pub struct CheckableBounds
{
	start: Option<usize>,
	content_start: Option<usize>,
	content_end: Option<usize>,
	end: Option<usize>,
}

#[cfg(test)]
mod tests
{
	fn no_checkable_returns_as_is() {}
}