pub trait OpenApiSplitExt {
// Required method
fn split_with<S: OpenApiSplitter>(
self,
splitter: S,
) -> SplitResult<S::Fragment>;
}Expand description
Extension trait for convenient splitting of OpenAPI specifications.
Required Methods§
Sourcefn split_with<S: OpenApiSplitter>(self, splitter: S) -> SplitResult<S::Fragment>
fn split_with<S: OpenApiSplitter>(self, splitter: S) -> SplitResult<S::Fragment>
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.