pub struct ApiHttpResponse {
pub status: Nat,
pub headers: Vec<ApiHttpHeader>,
pub body: Vec<u8>,
}Expand description
ApiHttpResponse
Fields§
§status: Nat§headers: Vec<ApiHttpHeader>§body: Vec<u8>Trait Implementations§
Source§impl CandidType for ApiHttpResponse
impl CandidType for ApiHttpResponse
Source§impl Clone for ApiHttpResponse
impl Clone for ApiHttpResponse
Source§fn clone(&self) -> ApiHttpResponse
fn clone(&self) -> ApiHttpResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ApiHttpResponse
impl Debug for ApiHttpResponse
Source§impl<'de> Deserialize<'de> for ApiHttpResponse
impl<'de> Deserialize<'de> for ApiHttpResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<HttpRequestResult> for ApiHttpResponse
impl From<HttpRequestResult> for ApiHttpResponse
Source§fn from(res: HttpRequestResult) -> Self
fn from(res: HttpRequestResult) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ApiHttpResponse
impl RefUnwindSafe for ApiHttpResponse
impl Send for ApiHttpResponse
impl Sync for ApiHttpResponse
impl Unpin for ApiHttpResponse
impl UnwindSafe for ApiHttpResponse
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