pub struct BasicRoute {
pub route: String,
pub table_schema: SqlTableSchema,
}
Fields§
§route: String
§table_schema: SqlTableSchema
Implementations§
Source§impl BasicRoute
impl BasicRoute
pub fn new(route: String, table_schema: SqlTableSchema) -> Self
Trait Implementations§
Source§impl Debug for BasicRoute
impl Debug for BasicRoute
Source§impl Route for BasicRoute
impl Route for BasicRoute
fn matches_uri(&self, uri: String) -> bool
fn get_schema(&self) -> &SqlTableSchema
Auto Trait Implementations§
impl Freeze for BasicRoute
impl RefUnwindSafe for BasicRoute
impl Send for BasicRoute
impl Sync for BasicRoute
impl Unpin for BasicRoute
impl UnwindSafe for BasicRoute
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more