pub struct CopyProgressDetails {
pub table_name: Option<String>,
pub status: Option<String>,
pub parallel_copy_type: Option<String>,
pub used_parallel_copies: Option<i32>,
pub data_read: Option<i64>,
pub data_written: Option<i64>,
pub rows_read: Option<i64>,
pub rows_copied: Option<i64>,
pub copy_start: Option<OffsetDateTime>,
pub copy_throughput: Option<f64>,
pub copy_duration: Option<i32>,
}
Expand description
Details on progress of ADF copy activity
Fields§
§table_name: Option<String>
Table Name
status: Option<String>
Status of the Copy activity (InProgress, Succeeded, Failed, Canceled).
parallel_copy_type: Option<String>
Type of parallel copy (Dynamic range, Physical partition, none).
used_parallel_copies: Option<i32>
The degree of parallelization.
data_read: Option<i64>
Bytes read
data_written: Option<i64>
Bytes written
rows_read: Option<i64>
Rows read
rows_copied: Option<i64>
Rows Copied
copy_start: Option<OffsetDateTime>
Copy Start
copy_throughput: Option<f64>
Copy throughput in KBps
copy_duration: Option<i32>
Copy Duration in seconds
Implementations§
Trait Implementations§
Source§impl Clone for CopyProgressDetails
impl Clone for CopyProgressDetails
Source§fn clone(&self) -> CopyProgressDetails
fn clone(&self) -> CopyProgressDetails
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 CopyProgressDetails
impl Debug for CopyProgressDetails
Source§impl Default for CopyProgressDetails
impl Default for CopyProgressDetails
Source§fn default() -> CopyProgressDetails
fn default() -> CopyProgressDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CopyProgressDetails
impl<'de> Deserialize<'de> for CopyProgressDetails
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 CopyProgressDetails
impl PartialEq for CopyProgressDetails
Source§impl Serialize for CopyProgressDetails
impl Serialize for CopyProgressDetails
impl StructuralPartialEq for CopyProgressDetails
Auto Trait Implementations§
impl Freeze for CopyProgressDetails
impl RefUnwindSafe for CopyProgressDetails
impl Send for CopyProgressDetails
impl Sync for CopyProgressDetails
impl Unpin for CopyProgressDetails
impl UnwindSafe for CopyProgressDetails
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