pub struct BatchLoadTask {
pub task_id: String,
pub status: String,
pub target_database_name: String,
pub target_table_name: String,
pub data_source_configuration: Value,
pub report_configuration: Value,
pub data_model_configuration: Option<Value>,
pub record_version: Option<i64>,
pub creation_time: f64,
pub last_updated_time: f64,
pub resumable_until: f64,
}Expand description
A batch-load task.
Fields§
§task_id: String§status: StringCREATED / IN_PROGRESS / FAILED / SUCCEEDED / PROGRESS_STOPPED
/ PENDING_RESUME.
target_database_name: String§target_table_name: String§data_source_configuration: Value§report_configuration: Value§data_model_configuration: Option<Value>§record_version: Option<i64>§creation_time: f64§last_updated_time: f64§resumable_until: f64Trait Implementations§
Source§impl Clone for BatchLoadTask
impl Clone for BatchLoadTask
Source§fn clone(&self) -> BatchLoadTask
fn clone(&self) -> BatchLoadTask
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BatchLoadTask
impl Debug for BatchLoadTask
Source§impl<'de> Deserialize<'de> for BatchLoadTask
impl<'de> Deserialize<'de> for BatchLoadTask
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
Auto Trait Implementations§
impl Freeze for BatchLoadTask
impl RefUnwindSafe for BatchLoadTask
impl Send for BatchLoadTask
impl Sync for BatchLoadTask
impl Unpin for BatchLoadTask
impl UnsafeUnpin for BatchLoadTask
impl UnwindSafe for BatchLoadTask
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