Enum ic_utils::interfaces::http_request::StreamingStrategy
source · [−]pub enum StreamingStrategy<Token = Token, Callback = HttpRequestStreamingCallback> {
Callback(CallbackStrategy<Token, Callback>),
}Expand description
Possible strategies for a streaming response.
Variants
Callback(CallbackStrategy<Token, Callback>)
A callback-based streaming strategy, where a callback function is provided for continuing the stream.
Implementations
sourceimpl<T1, C1> StreamingStrategy<T1, C1>
impl<T1, C1> StreamingStrategy<T1, C1>
sourcepub fn from<T2: Into<T1>, C2: Into<C1>>(v: StreamingStrategy<T2, C2>) -> Self
pub fn from<T2: Into<T1>, C2: Into<C1>>(v: StreamingStrategy<T2, C2>) -> Self
Convert another streaming strategy
sourcepub fn into<T2, C2>(self) -> StreamingStrategy<T2, C2> where
T1: Into<T2>,
C1: Into<C2>,
pub fn into<T2, C2>(self) -> StreamingStrategy<T2, C2> where
T1: Into<T2>,
C1: Into<C2>,
Convert this streaming strategy
Trait Implementations
sourceimpl<Token: CandidType, Callback: CandidType> CandidType for StreamingStrategy<Token, Callback>
impl<Token: CandidType, Callback: CandidType> CandidType for StreamingStrategy<Token, Callback>
sourceimpl<Token: Clone, Callback: Clone> Clone for StreamingStrategy<Token, Callback>
impl<Token: Clone, Callback: Clone> Clone for StreamingStrategy<Token, Callback>
sourcefn clone(&self) -> StreamingStrategy<Token, Callback>
fn clone(&self) -> StreamingStrategy<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 StreamingStrategy<Token, Callback>
impl<Token: Debug, Callback: Debug> Debug for StreamingStrategy<Token, Callback>
sourceimpl<'de, Token, Callback> Deserialize<'de> for StreamingStrategy<Token, Callback> where
Token: Deserialize<'de>,
Callback: Deserialize<'de>,
impl<'de, Token, Callback> Deserialize<'de> for StreamingStrategy<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 StreamingStrategy<Token, Callback> where
Callback: RefUnwindSafe,
Token: RefUnwindSafe,
impl<Token, Callback> Send for StreamingStrategy<Token, Callback> where
Callback: Send,
Token: Send,
impl<Token, Callback> Sync for StreamingStrategy<Token, Callback> where
Callback: Sync,
Token: Sync,
impl<Token, Callback> Unpin for StreamingStrategy<Token, Callback> where
Callback: Unpin,
Token: Unpin,
impl<Token, Callback> UnwindSafe for StreamingStrategy<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