#[non_exhaustive]pub struct RunDataScanResponse {
pub job: Option<DataScanJob>,
/* private fields */
}Expand description
Run DataScan Response.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.job: Option<DataScanJob>DataScanJob created by RunDataScan request.
Implementations§
Source§impl RunDataScanResponse
impl RunDataScanResponse
pub fn new() -> Self
Sourcepub fn set_job<T>(self, v: T) -> Selfwhere
T: Into<DataScanJob>,
pub fn set_job<T>(self, v: T) -> Selfwhere
T: Into<DataScanJob>,
Sets the value of job.
Sourcepub fn set_or_clear_job<T>(self, v: Option<T>) -> Selfwhere
T: Into<DataScanJob>,
pub fn set_or_clear_job<T>(self, v: Option<T>) -> Selfwhere
T: Into<DataScanJob>,
Sets or clears the value of job.
Trait Implementations§
Source§impl Clone for RunDataScanResponse
impl Clone for RunDataScanResponse
Source§fn clone(&self) -> RunDataScanResponse
fn clone(&self) -> RunDataScanResponse
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 moreSource§impl Debug for RunDataScanResponse
impl Debug for RunDataScanResponse
Source§impl Default for RunDataScanResponse
impl Default for RunDataScanResponse
Source§fn default() -> RunDataScanResponse
fn default() -> RunDataScanResponse
Returns the “default value” for a type. Read more
Source§impl Message for RunDataScanResponse
impl Message for RunDataScanResponse
Source§impl PartialEq for RunDataScanResponse
impl PartialEq for RunDataScanResponse
impl StructuralPartialEq for RunDataScanResponse
Auto Trait Implementations§
impl Freeze for RunDataScanResponse
impl RefUnwindSafe for RunDataScanResponse
impl Send for RunDataScanResponse
impl Sync for RunDataScanResponse
impl Unpin for RunDataScanResponse
impl UnwindSafe for RunDataScanResponse
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