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