diesel_dynamic_schema/schema.rs
1use crate::table::Table;
2
3#[derive(Debug, Clone, Copy)]
4/// A database schema.
5/// This type is created by the [`schema`](crate::schema()) function.
6pub struct Schema<T> {
7 name: T,
8}
9
10impl<T> Schema<T> {
11 pub(crate) fn new(name: T) -> Self {
12 Self { name }
13 }
14
15 /// Create a table with this schema.
16 pub fn table<U>(&self, name: U) -> Table<U, T>
17 where
18 T: Clone,
19 {
20 Table::with_schema(self.name.clone(), name)
21 }
22
23 /// Gets the name of the schema, as specified on creation.
24 pub fn name(&self) -> &T {
25 &self.name
26 }
27}