pub struct StreamingOperation<Q: GraphQLQuery> { /* private fields */ }
Expand description
A streaming operation for a GraphQLQuery
Implementations§
Source§impl<Q: GraphQLQuery> StreamingOperation<Q>
impl<Q: GraphQLQuery> StreamingOperation<Q>
Sourcepub fn new(variables: Q::Variables) -> Self
pub fn new(variables: Q::Variables) -> Self
Constructs a StreamingOperation
Trait Implementations§
Source§impl<Q: GraphQLQuery> GraphqlOperation for StreamingOperation<Q>
impl<Q: GraphQLQuery> GraphqlOperation for StreamingOperation<Q>
Source§type Response = Response<<Q as GraphQLQuery>::ResponseData>
type Response = Response<<Q as GraphQLQuery>::ResponseData>
The actual response & error type of this operation.
Source§impl<Q: GraphQLQuery> Serialize for StreamingOperation<Q>
impl<Q: GraphQLQuery> Serialize for StreamingOperation<Q>
Auto Trait Implementations§
impl<Q> Freeze for StreamingOperation<Q>
impl<Q> RefUnwindSafe for StreamingOperation<Q>
impl<Q> Send for StreamingOperation<Q>
impl<Q> Sync for StreamingOperation<Q>
impl<Q> Unpin for StreamingOperation<Q>
impl<Q> UnwindSafe for StreamingOperation<Q>
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