pub struct SessionExport {
pub session: SessionInfo,
pub events: Vec<TestEvent>,
}Fields§
§session: SessionInfo§events: Vec<TestEvent>Trait Implementations§
Source§impl Clone for SessionExport
impl Clone for SessionExport
Source§fn clone(&self) -> SessionExport
fn clone(&self) -> SessionExport
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 moreSource§impl Debug for SessionExport
impl Debug for SessionExport
Source§impl<'de> Deserialize<'de> for SessionExport
impl<'de> Deserialize<'de> for SessionExport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<SessionExport> for SessionExportResult
impl From<SessionExport> for SessionExportResult
Source§fn from(export: SessionExport) -> Self
fn from(export: SessionExport) -> Self
Converts to this type from the input type.
Source§impl JsonSchema for SessionExport
impl JsonSchema for SessionExport
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for SessionExport
impl PartialEq for SessionExport
Source§impl Serialize for SessionExport
impl Serialize for SessionExport
impl StructuralPartialEq for SessionExport
Auto Trait Implementations§
impl Freeze for SessionExport
impl RefUnwindSafe for SessionExport
impl Send for SessionExport
impl Sync for SessionExport
impl Unpin for SessionExport
impl UnsafeUnpin for SessionExport
impl UnwindSafe for SessionExport
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