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