pub trait DrawResourceRoutesWithSchema {
// Required method
fn endpoint<E: 'static + EndpointWithSchema>(&mut self);
}
Expand description
This trait allows to draw routes within an resource. Use this only inside the Resource::setup method.
Required Methods§
fn endpoint<E: 'static + EndpointWithSchema>(&mut self)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.