pub struct ExportTaskExecutionInfo {
pub completion_time: Option<i64>,
pub creation_time: Option<i64>,
}Expand description
Represents the status of an export task.
Fields§
§completion_time: Option<i64>The completion time of the export task, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
creation_time: Option<i64>The creation time of the export task, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
Trait Implementations§
Source§impl Clone for ExportTaskExecutionInfo
impl Clone for ExportTaskExecutionInfo
Source§fn clone(&self) -> ExportTaskExecutionInfo
fn clone(&self) -> ExportTaskExecutionInfo
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 ExportTaskExecutionInfo
impl Debug for ExportTaskExecutionInfo
Source§impl Default for ExportTaskExecutionInfo
impl Default for ExportTaskExecutionInfo
Source§fn default() -> ExportTaskExecutionInfo
fn default() -> ExportTaskExecutionInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExportTaskExecutionInfo
impl<'de> Deserialize<'de> for ExportTaskExecutionInfo
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 ExportTaskExecutionInfo
impl PartialEq for ExportTaskExecutionInfo
impl StructuralPartialEq for ExportTaskExecutionInfo
Auto Trait Implementations§
impl Freeze for ExportTaskExecutionInfo
impl RefUnwindSafe for ExportTaskExecutionInfo
impl Send for ExportTaskExecutionInfo
impl Sync for ExportTaskExecutionInfo
impl Unpin for ExportTaskExecutionInfo
impl UnwindSafe for ExportTaskExecutionInfo
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