pub struct TProgressUpdateResp {
pub header_names: Vec<String>,
pub rows: Vec<Vec<String>>,
pub progressed_percentage: OrderedFloat<f64>,
pub status: TJobExecutionStatus,
pub footer_summary: String,
pub start_time: i64,
}
Fields§
§header_names: Vec<String>
§rows: Vec<Vec<String>>
§progressed_percentage: OrderedFloat<f64>
§status: TJobExecutionStatus
§start_time: i64
Implementations§
Source§impl TProgressUpdateResp
impl TProgressUpdateResp
pub fn new( header_names: Vec<String>, rows: Vec<Vec<String>>, progressed_percentage: OrderedFloat<f64>, status: TJobExecutionStatus, footer_summary: String, start_time: i64, ) -> TProgressUpdateResp
Trait Implementations§
Source§impl Clone for TProgressUpdateResp
impl Clone for TProgressUpdateResp
Source§fn clone(&self) -> TProgressUpdateResp
fn clone(&self) -> TProgressUpdateResp
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 TProgressUpdateResp
impl Debug for TProgressUpdateResp
Source§impl Hash for TProgressUpdateResp
impl Hash for TProgressUpdateResp
Source§impl Ord for TProgressUpdateResp
impl Ord for TProgressUpdateResp
Source§fn cmp(&self, other: &TProgressUpdateResp) -> Ordering
fn cmp(&self, other: &TProgressUpdateResp) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TProgressUpdateResp
impl PartialEq for TProgressUpdateResp
Source§impl PartialOrd for TProgressUpdateResp
impl PartialOrd for TProgressUpdateResp
Source§impl TSerializable for TProgressUpdateResp
impl TSerializable for TProgressUpdateResp
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TProgressUpdateResp>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for TProgressUpdateResp
impl StructuralPartialEq for TProgressUpdateResp
Auto Trait Implementations§
impl Freeze for TProgressUpdateResp
impl RefUnwindSafe for TProgressUpdateResp
impl Send for TProgressUpdateResp
impl Sync for TProgressUpdateResp
impl Unpin for TProgressUpdateResp
impl UnwindSafe for TProgressUpdateResp
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