pub struct ExportDecisionsParams {
pub from: String,
pub to: String,
pub format: Option<String>,
}Expand description
Selects the export window and (server-side) format. The SDK always parses
the JSONL stream; format is accepted for parity with the gateway.
Fields§
§from: StringInclusive lower bound (RFC3339). Required.
to: StringInclusive upper bound (RFC3339). Required.
format: Option<String>Optional server-side format hint ("jsonl" / "csv").
Implementations§
Trait Implementations§
Source§impl Clone for ExportDecisionsParams
impl Clone for ExportDecisionsParams
Source§fn clone(&self) -> ExportDecisionsParams
fn clone(&self) -> ExportDecisionsParams
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 moreAuto Trait Implementations§
impl Freeze for ExportDecisionsParams
impl RefUnwindSafe for ExportDecisionsParams
impl Send for ExportDecisionsParams
impl Sync for ExportDecisionsParams
impl Unpin for ExportDecisionsParams
impl UnsafeUnpin for ExportDecisionsParams
impl UnwindSafe for ExportDecisionsParams
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