pub trait AppExt<T> {
// Required method
fn into_utoipa_app(self) -> UtoipaApp<T>;
}
Expand description
Extends actix_web::App
with utoipa
related functionality.
Required Methods§
Sourcefn into_utoipa_app(self) -> UtoipaApp<T>
fn into_utoipa_app(self) -> UtoipaApp<T>
Convert’s this actix_web::App
to UtoipaApp
.
See usage from UtoipaApp