pub struct BackgroundJobLogEntry {
pub apply_job_details: Option<ApplyJobDetails>,
pub completion_comment: Option<String>,
pub completion_state: Option<String>,
pub convert_job_details: Option<ConvertJobDetails>,
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§
§apply_job_details: Option<ApplyJobDetails>
Output only. Apply job details.
completion_comment: Option<String>
Output only. Job completion comment, such as how many entities were seeded, how many warnings were found during conversion, and similar information.
completion_state: Option<String>
Output only. Job completion state, i.e. the final state after the job completed.
convert_job_details: Option<ConvertJobDetails>
Output only. Convert job details.
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>
Output only. Import rules job details.
job_type: Option<String>
The type of job that was executed.
request_autocommit: Option<bool>
Output only. Whether the client requested the conversion workspace to be committed after a successful completion of the job.
seed_job_details: Option<SeedJobDetails>
Output only. 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
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
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>,
Source§impl Serialize for BackgroundJobLogEntry
impl Serialize for BackgroundJobLogEntry
impl Part for BackgroundJobLogEntry
Auto Trait Implementations§
impl Freeze for BackgroundJobLogEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more