pub struct AtelierWebResponse {
pub status: u16,
pub content_type: &'static str,
pub body: String,
}Expand description
HTTP response generated by the Atelier cache adapter.
Fields§
§status: u16HTTP status code.
content_type: &'static strResponse content type.
body: StringResponse body.
Auto Trait Implementations§
impl Freeze for AtelierWebResponse
impl RefUnwindSafe for AtelierWebResponse
impl Send for AtelierWebResponse
impl Sync for AtelierWebResponse
impl Unpin for AtelierWebResponse
impl UnsafeUnpin for AtelierWebResponse
impl UnwindSafe for AtelierWebResponse
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