pub trait SchemaEntrypoints {
// Required method
fn schema_entrypoints() -> Vec<Entrypoint>;
}Expand description
Trait representing schema entrypoints.
Required Methods§
Sourcefn schema_entrypoints() -> Vec<Entrypoint>
fn schema_entrypoints() -> Vec<Entrypoint>
Returns a vector of Entrypoints.
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.