pub struct TDownloadDataReq {
pub session_handle: TSessionHandle,
pub table_name: Option<TPatternOrIdentifier>,
pub query: Option<String>,
pub format: Option<String>,
pub download_options: Option<BTreeMap<String, String>>,
}
Fields§
§session_handle: TSessionHandle
§table_name: Option<TPatternOrIdentifier>
§query: Option<String>
§format: Option<String>
§download_options: Option<BTreeMap<String, String>>
Implementations§
Trait Implementations§
Source§impl Clone for TDownloadDataReq
impl Clone for TDownloadDataReq
Source§fn clone(&self) -> TDownloadDataReq
fn clone(&self) -> TDownloadDataReq
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 TDownloadDataReq
impl Debug for TDownloadDataReq
Source§impl Hash for TDownloadDataReq
impl Hash for TDownloadDataReq
Source§impl Ord for TDownloadDataReq
impl Ord for TDownloadDataReq
Source§fn cmp(&self, other: &TDownloadDataReq) -> Ordering
fn cmp(&self, other: &TDownloadDataReq) -> 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 TDownloadDataReq
impl PartialEq for TDownloadDataReq
Source§impl PartialOrd for TDownloadDataReq
impl PartialOrd for TDownloadDataReq
Source§impl TSerializable for TDownloadDataReq
impl TSerializable for TDownloadDataReq
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TDownloadDataReq>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for TDownloadDataReq
impl StructuralPartialEq for TDownloadDataReq
Auto Trait Implementations§
impl Freeze for TDownloadDataReq
impl RefUnwindSafe for TDownloadDataReq
impl Send for TDownloadDataReq
impl Sync for TDownloadDataReq
impl Unpin for TDownloadDataReq
impl UnwindSafe for TDownloadDataReq
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