pub struct ScanDataExportExecution {
pub id: Option<i32>,
pub user_id: Option<i32>,
pub status: Option<String>,
pub trigger: Option<String>,
pub start_time: Option<String>,
pub end_time: Option<String>,
pub status_text: Option<String>,
pub user_name: Option<String>,
pub file_present: Option<bool>,
}Expand description
ScanDataExportExecution : The replication execution
Fields§
§id: Option<i32>The ID of the execution
user_id: Option<i32>The ID if the user triggering the export job
status: Option<String>The status of the execution
trigger: Option<String>The trigger mode
start_time: Option<String>The start time
end_time: Option<String>The end time
status_text: Option<String>The status text
user_name: Option<String>The name of the user triggering the job
file_present: Option<bool>Indicates whether the export artifact is present in registry
Implementations§
Source§impl ScanDataExportExecution
impl ScanDataExportExecution
Sourcepub fn new() -> ScanDataExportExecution
pub fn new() -> ScanDataExportExecution
The replication execution
Trait Implementations§
Source§impl Clone for ScanDataExportExecution
impl Clone for ScanDataExportExecution
Source§fn clone(&self) -> ScanDataExportExecution
fn clone(&self) -> ScanDataExportExecution
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 ScanDataExportExecution
impl Debug for ScanDataExportExecution
Source§impl Default for ScanDataExportExecution
impl Default for ScanDataExportExecution
Source§fn default() -> ScanDataExportExecution
fn default() -> ScanDataExportExecution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScanDataExportExecution
impl<'de> Deserialize<'de> for ScanDataExportExecution
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 PartialEq for ScanDataExportExecution
impl PartialEq for ScanDataExportExecution
Source§impl Serialize for ScanDataExportExecution
impl Serialize for ScanDataExportExecution
impl StructuralPartialEq for ScanDataExportExecution
Auto Trait Implementations§
impl Freeze for ScanDataExportExecution
impl RefUnwindSafe for ScanDataExportExecution
impl Send for ScanDataExportExecution
impl Sync for ScanDataExportExecution
impl Unpin for ScanDataExportExecution
impl UnwindSafe for ScanDataExportExecution
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