pub struct GraphqlReport {
pub report_date: String,
pub case_name: String,
pub generated_at: String,
pub endpoint_note: String,
pub result_note: String,
pub command_snippet: Option<String>,
pub operation: String,
pub variables_note: Option<String>,
pub variables_json: String,
pub response_note: Option<String>,
pub response_lang: String,
pub response_body: String,
}Fields§
§report_date: String§case_name: String§generated_at: String§endpoint_note: String§result_note: String§command_snippet: Option<String>§operation: String§variables_note: Option<String>§variables_json: String§response_note: Option<String>§response_lang: String§response_body: StringTrait Implementations§
Source§impl Clone for GraphqlReport
impl Clone for GraphqlReport
Source§fn clone(&self) -> GraphqlReport
fn clone(&self) -> GraphqlReport
Returns a duplicate 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 GraphqlReport
impl Debug for GraphqlReport
Source§impl PartialEq for GraphqlReport
impl PartialEq for GraphqlReport
impl Eq for GraphqlReport
impl StructuralPartialEq for GraphqlReport
Auto Trait Implementations§
impl Freeze for GraphqlReport
impl RefUnwindSafe for GraphqlReport
impl Send for GraphqlReport
impl Sync for GraphqlReport
impl Unpin for GraphqlReport
impl UnsafeUnpin for GraphqlReport
impl UnwindSafe for GraphqlReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.