Struct google_datamigration1::api::BackgroundJobLogEntry
source · pub struct BackgroundJobLogEntry {
pub completion_comment: Option<String>,
pub completion_state: Option<String>,
pub finish_time: Option<DateTime<Utc>>,
pub id: Option<String>,
pub import_rules_job_details: Option<ImportRulesJobDetails>,
pub job_type: Option<String>,
pub request_autocommit: Option<bool>,
pub seed_job_details: Option<SeedJobDetails>,
pub start_time: Option<DateTime<Utc>>,
}
Expand description
Execution log of a background job.
This type is not used in any activity, and only used as part of another schema.
Fields§
§completion_comment: Option<String>
Job completion comment, such as how many entities were seeded, how many warnings were found during conversion and similar information.
completion_state: Option<String>
Job completion state, i.e. the final state after the job completed.
finish_time: Option<DateTime<Utc>>
The timestamp when the background job was finished.
id: Option<String>
The background job log entry id
import_rules_job_details: Option<ImportRulesJobDetails>
Import rules job details
job_type: Option<String>
The type of job that was executed.
request_autocommit: Option<bool>
Whether the client requested the conversion workspace to be committed after a successful completion of the job.
seed_job_details: Option<SeedJobDetails>
Seed job details
start_time: Option<DateTime<Utc>>
The timestamp when the background job was started.
Trait Implementations§
source§impl Clone for BackgroundJobLogEntry
impl Clone for BackgroundJobLogEntry
source§fn clone(&self) -> BackgroundJobLogEntry
fn clone(&self) -> BackgroundJobLogEntry
Returns a copy 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 BackgroundJobLogEntry
impl Debug for BackgroundJobLogEntry
source§impl Default for BackgroundJobLogEntry
impl Default for BackgroundJobLogEntry
source§fn default() -> BackgroundJobLogEntry
fn default() -> BackgroundJobLogEntry
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for BackgroundJobLogEntry
impl<'de> Deserialize<'de> for BackgroundJobLogEntry
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 Serialize for BackgroundJobLogEntry
impl Serialize for BackgroundJobLogEntry
impl Part for BackgroundJobLogEntry
Auto Trait Implementations§
impl RefUnwindSafe for BackgroundJobLogEntry
impl Send for BackgroundJobLogEntry
impl Sync for BackgroundJobLogEntry
impl Unpin for BackgroundJobLogEntry
impl UnwindSafe for BackgroundJobLogEntry
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