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