pub enum SubgraphRequestExecutionKind {
InternalServerError,
HookError,
RequestError,
RateLimited,
Response(SubgraphResponse),
}
Expand description
Subgraph response variant.
Variants§
InternalServerError
Internal server error in the gateway.
HookError
Response prevented by subgraph request hook.
RequestError
HTTP request failed.
RateLimited
Request was rate-limited.
Response(SubgraphResponse)
A response was received.
Trait Implementations§
Source§impl Clone for SubgraphRequestExecutionKind
impl Clone for SubgraphRequestExecutionKind
Source§fn clone(&self) -> SubgraphRequestExecutionKind
fn clone(&self) -> SubgraphRequestExecutionKind
Returns a copy 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 SubgraphRequestExecutionKind
impl Debug for SubgraphRequestExecutionKind
impl Copy for SubgraphRequestExecutionKind
Auto Trait Implementations§
impl Freeze for SubgraphRequestExecutionKind
impl RefUnwindSafe for SubgraphRequestExecutionKind
impl Send for SubgraphRequestExecutionKind
impl Sync for SubgraphRequestExecutionKind
impl Unpin for SubgraphRequestExecutionKind
impl UnwindSafe for SubgraphRequestExecutionKind
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