pub struct DownloadScanDataParams {
pub execution_id: i32,
pub x_request_id: Option<String>,
pub format: Option<String>,
}Expand description
struct for passing parameters to the method download_scan_data
Fields§
§execution_id: i32Execution ID
x_request_id: Option<String>An unique ID for the request
format: Option<String>The format of the data to be exported. e.g. CSV or PDF
Trait Implementations§
Source§impl Clone for DownloadScanDataParams
impl Clone for DownloadScanDataParams
Source§fn clone(&self) -> DownloadScanDataParams
fn clone(&self) -> DownloadScanDataParams
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 moreAuto Trait Implementations§
impl Freeze for DownloadScanDataParams
impl RefUnwindSafe for DownloadScanDataParams
impl Send for DownloadScanDataParams
impl Sync for DownloadScanDataParams
impl Unpin for DownloadScanDataParams
impl UnwindSafe for DownloadScanDataParams
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