Struct utoipa_swagger_ui::SwaggerFile
source · #[non_exhaustive]pub struct SwaggerFile<'a> {
pub bytes: Cow<'a, [u8]>,
pub content_type: String,
}
Expand description
Represents servable file of Swagger UI. This is used together with serve
function
to serve Swagger UI files via web server.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.bytes: Cow<'a, [u8]>
§content_type: String
Content type of the file e.g "text/xml"
.
Auto Trait Implementations§
impl<'a> Freeze for SwaggerFile<'a>
impl<'a> RefUnwindSafe for SwaggerFile<'a>
impl<'a> Send for SwaggerFile<'a>
impl<'a> Sync for SwaggerFile<'a>
impl<'a> Unpin for SwaggerFile<'a>
impl<'a> UnwindSafe for SwaggerFile<'a>
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