pub struct TSFetchMetadataResp {
pub status: TSStatus,
pub metadata_in_json: Option<String>,
pub columns_list: Option<Vec<String>>,
pub data_type: Option<String>,
}
Fields§
§status: TSStatus
§metadata_in_json: Option<String>
§columns_list: Option<Vec<String>>
§data_type: Option<String>
Implementations§
Source§impl TSFetchMetadataResp
impl TSFetchMetadataResp
pub fn new<F2, F3, F4>( status: TSStatus, metadata_in_json: F2, columns_list: F3, data_type: F4, ) -> TSFetchMetadataResp
pub fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TSFetchMetadataResp>
pub fn write_to_out_protocol( &self, o_prot: &mut dyn TOutputProtocol, ) -> Result<()>
Trait Implementations§
Source§impl Clone for TSFetchMetadataResp
impl Clone for TSFetchMetadataResp
Source§fn clone(&self) -> TSFetchMetadataResp
fn clone(&self) -> TSFetchMetadataResp
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 TSFetchMetadataResp
impl Debug for TSFetchMetadataResp
Source§impl Hash for TSFetchMetadataResp
impl Hash for TSFetchMetadataResp
Source§impl Ord for TSFetchMetadataResp
impl Ord for TSFetchMetadataResp
Source§fn cmp(&self, other: &TSFetchMetadataResp) -> Ordering
fn cmp(&self, other: &TSFetchMetadataResp) -> 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 TSFetchMetadataResp
impl PartialEq for TSFetchMetadataResp
Source§impl PartialOrd for TSFetchMetadataResp
impl PartialOrd for TSFetchMetadataResp
impl Eq for TSFetchMetadataResp
impl StructuralPartialEq for TSFetchMetadataResp
Auto Trait Implementations§
impl Freeze for TSFetchMetadataResp
impl RefUnwindSafe for TSFetchMetadataResp
impl Send for TSFetchMetadataResp
impl Sync for TSFetchMetadataResp
impl Unpin for TSFetchMetadataResp
impl UnwindSafe for TSFetchMetadataResp
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