pub struct TGetTablesReq {
pub session_handle: TSessionHandle,
pub catalog_name: Option<TPatternOrIdentifier>,
pub schema_name: Option<TPatternOrIdentifier>,
pub table_name: Option<TPatternOrIdentifier>,
pub table_types: Option<Vec<String>>,
}
Fields§
§session_handle: TSessionHandle
§catalog_name: Option<TPatternOrIdentifier>
§schema_name: Option<TPatternOrIdentifier>
§table_name: Option<TPatternOrIdentifier>
§table_types: Option<Vec<String>>
Implementations§
Source§impl TGetTablesReq
impl TGetTablesReq
pub fn new<F2, F3, F4, F5>(
session_handle: TSessionHandle,
catalog_name: F2,
schema_name: F3,
table_name: F4,
table_types: F5,
) -> TGetTablesReqwhere
F2: Into<Option<TPatternOrIdentifier>>,
F3: Into<Option<TPatternOrIdentifier>>,
F4: Into<Option<TPatternOrIdentifier>>,
F5: Into<Option<Vec<String>>>,
Trait Implementations§
Source§impl Clone for TGetTablesReq
impl Clone for TGetTablesReq
Source§fn clone(&self) -> TGetTablesReq
fn clone(&self) -> TGetTablesReq
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 TGetTablesReq
impl Debug for TGetTablesReq
Source§impl Hash for TGetTablesReq
impl Hash for TGetTablesReq
Source§impl Ord for TGetTablesReq
impl Ord for TGetTablesReq
Source§fn cmp(&self, other: &TGetTablesReq) -> Ordering
fn cmp(&self, other: &TGetTablesReq) -> 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 TGetTablesReq
impl PartialEq for TGetTablesReq
Source§impl PartialOrd for TGetTablesReq
impl PartialOrd for TGetTablesReq
Source§impl TSerializable for TGetTablesReq
impl TSerializable for TGetTablesReq
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TGetTablesReq>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for TGetTablesReq
impl StructuralPartialEq for TGetTablesReq
Auto Trait Implementations§
impl Freeze for TGetTablesReq
impl RefUnwindSafe for TGetTablesReq
impl Send for TGetTablesReq
impl Sync for TGetTablesReq
impl Unpin for TGetTablesReq
impl UnwindSafe for TGetTablesReq
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