pub struct HttpExecutionRequest<'a> {
pub query: &'a str,
pub dedupe: bool,
pub operation_name: Option<&'a str>,
pub variables: Option<HashMap<&'a str, &'a Value>>,
pub representations: Option<Vec<u8>>,
}Fields§
§query: &'a str§dedupe: bool§operation_name: Option<&'a str>§variables: Option<HashMap<&'a str, &'a Value>>§representations: Option<Vec<u8>>Auto Trait Implementations§
impl<'a> Freeze for HttpExecutionRequest<'a>
impl<'a> !RefUnwindSafe for HttpExecutionRequest<'a>
impl<'a> Send for HttpExecutionRequest<'a>
impl<'a> Sync for HttpExecutionRequest<'a>
impl<'a> Unpin for HttpExecutionRequest<'a>
impl<'a> !UnwindSafe for HttpExecutionRequest<'a>
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