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