pub struct GraphqlCall {
pub query: String,
pub operation_name: Option<String>,
pub variables: Option<Value>,
pub endpoint: String,
}Fields§
§query: String§operation_name: Option<String>§variables: Option<Value>§endpoint: StringTrait Implementations§
Source§impl Clone for GraphqlCall
impl Clone for GraphqlCall
Source§fn clone(&self) -> GraphqlCall
fn clone(&self) -> GraphqlCall
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GraphqlCall
impl RefUnwindSafe for GraphqlCall
impl Send for GraphqlCall
impl Sync for GraphqlCall
impl Unpin for GraphqlCall
impl UnsafeUnpin for GraphqlCall
impl UnwindSafe for GraphqlCall
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