pub struct RestReport {
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<RestReportAssertion>,
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<RestReportAssertion>§request_json: String§response_lang: String§response_body: String§stderr_note: Option<String>Trait Implementations§
Source§impl Clone for RestReport
impl Clone for RestReport
Source§fn clone(&self) -> RestReport
fn clone(&self) -> RestReport
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 RestReport
impl Debug for RestReport
Source§impl PartialEq for RestReport
impl PartialEq for RestReport
impl Eq for RestReport
impl StructuralPartialEq for RestReport
Auto Trait Implementations§
impl Freeze for RestReport
impl RefUnwindSafe for RestReport
impl Send for RestReport
impl Sync for RestReport
impl Unpin for RestReport
impl UnsafeUnpin for RestReport
impl UnwindSafe for RestReport
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.