pub struct SpaResponse {
pub data: Cow<'static, [u8]>,
pub mime: &'static str,
pub etag: String,
pub is_html: bool,
}Expand description
SPA 响应数据
Fields§
§data: Cow<'static, [u8]>§mime: &'static str§etag: String§is_html: boolAuto Trait Implementations§
impl Freeze for SpaResponse
impl RefUnwindSafe for SpaResponse
impl Send for SpaResponse
impl Sync for SpaResponse
impl Unpin for SpaResponse
impl UnsafeUnpin for SpaResponse
impl UnwindSafe for SpaResponse
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