Struct lucas_test::api::http::ResponseData
source · [−]#[non_exhaustive]pub struct ResponseData {
pub url: Url,
pub status: u16,
pub headers: HashMap<String, String>,
pub raw_headers: HashMap<String, Vec<String>>,
pub data: Value,
}This is supported on crate feature
http-api only.Expand description
The response data.
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.url: UrlResponse URL. Useful if it followed redirects.
status: u16Response status code.
headers: HashMap<String, String>Response headers.
raw_headers: HashMap<String, Vec<String>>Response raw headers.
data: ValueResponse data.
Trait Implementations
sourceimpl Debug for ResponseData
impl Debug for ResponseData
sourceimpl Serialize for ResponseData
impl Serialize for ResponseData
Auto Trait Implementations
impl RefUnwindSafe for ResponseData
impl Send for ResponseData
impl Sync for ResponseData
impl Unpin for ResponseData
impl UnwindSafe for ResponseData
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more