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