pub struct SessionExportResult {
pub session: SessionInfo,
pub events: Vec<TestEvent>,
pub next_after_sequence: Option<EventSequence>,
}Expand description
Result returned by session.export.
nextAfterSequence is absent for a legacy complete export and for the
final page. A paged response includes it only when another page remains.
Fields§
§session: SessionInfo§events: Vec<TestEvent>§next_after_sequence: Option<EventSequence>Trait Implementations§
Source§impl Clone for SessionExportResult
impl Clone for SessionExportResult
Source§fn clone(&self) -> SessionExportResult
fn clone(&self) -> SessionExportResult
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 SessionExportResult
impl Debug for SessionExportResult
Source§impl<'de> Deserialize<'de> for SessionExportResult
impl<'de> Deserialize<'de> for SessionExportResult
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 SessionExportResult
impl JsonSchema for SessionExportResult
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 SessionExportResult
impl PartialEq for SessionExportResult
Source§impl Serialize for SessionExportResult
impl Serialize for SessionExportResult
impl StructuralPartialEq for SessionExportResult
Auto Trait Implementations§
impl Freeze for SessionExportResult
impl RefUnwindSafe for SessionExportResult
impl Send for SessionExportResult
impl Sync for SessionExportResult
impl Unpin for SessionExportResult
impl UnsafeUnpin for SessionExportResult
impl UnwindSafe for SessionExportResult
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