pub struct ExportResponse {
pub export_id: String,
pub subject_id: String,
pub format: ExportFormat,
pub generated_at: String,
pub total_items: usize,
pub data: Value,
pub scope: ExportScope,
pub date_range: Option<DateRange>,
}Expand description
Response from data export endpoint.
Fields§
§export_id: StringUnique export ID for audit tracking
subject_id: StringThe subject whose data was exported
format: ExportFormatExport format used
generated_at: StringWhen the export was generated
total_items: usizeTotal number of items exported
data: ValueThe exported data (JSON format) or CSV string (CSV format)
scope: ExportScopeScope of the export
date_range: Option<DateRange>Date range filter applied (if any)
Trait Implementations§
Source§impl Debug for ExportResponse
impl Debug for ExportResponse
Auto Trait Implementations§
impl Freeze for ExportResponse
impl RefUnwindSafe for ExportResponse
impl Send for ExportResponse
impl Sync for ExportResponse
impl Unpin for ExportResponse
impl UnsafeUnpin for ExportResponse
impl UnwindSafe for ExportResponse
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more