pub struct GrpcReport {
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 assertions: Vec<GrpcReportAssertion>,
pub request_json: String,
pub response_lang: String,
pub response_body: String,
pub stderr_note: Option<String>,
}Fields§
§report_date: String§case_name: String§generated_at: String§endpoint_note: String§result_note: String§command_snippet: Option<String>§assertions: Vec<GrpcReportAssertion>§request_json: String§response_lang: String§response_body: String§stderr_note: Option<String>Trait Implementations§
Source§impl Clone for GrpcReport
impl Clone for GrpcReport
Source§fn clone(&self) -> GrpcReport
fn clone(&self) -> GrpcReport
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 GrpcReport
impl Debug for GrpcReport
Source§impl PartialEq for GrpcReport
impl PartialEq for GrpcReport
impl Eq for GrpcReport
impl StructuralPartialEq for GrpcReport
Auto Trait Implementations§
impl Freeze for GrpcReport
impl RefUnwindSafe for GrpcReport
impl Send for GrpcReport
impl Sync for GrpcReport
impl Unpin for GrpcReport
impl UnsafeUnpin for GrpcReport
impl UnwindSafe for GrpcReport
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.