Struct onedrive::HttpResponse
source · pub struct HttpResponse {
pub status: String,
pub status_code: u16,
pub body: Bytes,
}Expand description
Simple HTTP Response Struct
Fields§
§status: StringThe status of the HTTP response
status_code: u16The status code of the HTTP response
body: BytesThe response body of the HTTP response
Auto Trait Implementations§
impl RefUnwindSafe for HttpResponse
impl Send for HttpResponse
impl Sync for HttpResponse
impl Unpin for HttpResponse
impl UnwindSafe for HttpResponse
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