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