Struct ic_utils::interfaces::http_request::HttpResponse
source · [−]pub struct HttpResponse<Token = Token, Callback = HttpRequestStreamingCallback> {
pub status_code: u16,
pub headers: Vec<HeaderField<'static>>,
pub body: Vec<u8>,
pub streaming_strategy: Option<StreamingStrategy<Token, Callback>>,
pub upgrade: Option<bool>,
}Expand description
A HTTP response.
Fields
status_code: u16The HTTP status code.
headers: Vec<HeaderField<'static>>The response header map.
body: Vec<u8>The response body.
streaming_strategy: Option<StreamingStrategy<Token, Callback>>The strategy for streaming the rest of the data, if the full response is to be streamed.
upgrade: Option<bool>Whether the query call should be upgraded to an update call.
Implementations
sourceimpl<T1, C1> HttpResponse<T1, C1>
impl<T1, C1> HttpResponse<T1, C1>
sourcepub fn from<T2: Into<T1>, C2: Into<C1>>(v: HttpResponse<T2, C2>) -> Self
pub fn from<T2: Into<T1>, C2: Into<C1>>(v: HttpResponse<T2, C2>) -> Self
Convert another streaming strategy
sourcepub fn into<T2, C2>(self) -> HttpResponse<T2, C2> where
T1: Into<T2>,
C1: Into<C2>,
pub fn into<T2, C2>(self) -> HttpResponse<T2, C2> where
T1: Into<T2>,
C1: Into<C2>,
Convert this streaming strategy
Trait Implementations
sourceimpl<Token: CandidType, Callback: CandidType> CandidType for HttpResponse<Token, Callback>
impl<Token: CandidType, Callback: CandidType> CandidType for HttpResponse<Token, Callback>
sourceimpl<Token: Clone, Callback: Clone> Clone for HttpResponse<Token, Callback>
impl<Token: Clone, Callback: Clone> Clone for HttpResponse<Token, Callback>
sourcefn clone(&self) -> HttpResponse<Token, Callback>
fn clone(&self) -> HttpResponse<Token, Callback>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<Token: Debug, Callback: Debug> Debug for HttpResponse<Token, Callback>
impl<Token: Debug, Callback: Debug> Debug for HttpResponse<Token, Callback>
sourceimpl<'de, Token, Callback> Deserialize<'de> for HttpResponse<Token, Callback> where
Token: Deserialize<'de>,
Callback: Deserialize<'de>,
impl<'de, Token, Callback> Deserialize<'de> for HttpResponse<Token, Callback> where
Token: Deserialize<'de>,
Callback: Deserialize<'de>,
sourcefn 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
Auto Trait Implementations
impl<Token, Callback> RefUnwindSafe for HttpResponse<Token, Callback> where
Callback: RefUnwindSafe,
Token: RefUnwindSafe,
impl<Token, Callback> Send for HttpResponse<Token, Callback> where
Callback: Send,
Token: Send,
impl<Token, Callback> Sync for HttpResponse<Token, Callback> where
Callback: Sync,
Token: Sync,
impl<Token, Callback> Unpin for HttpResponse<Token, Callback> where
Callback: Unpin,
Token: Unpin,
impl<Token, Callback> UnwindSafe for HttpResponse<Token, Callback> where
Callback: UnwindSafe,
Token: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more