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