pub struct TRowSet {
pub start_row_offset: i64,
pub rows: Vec<TRow>,
pub columns: Option<Vec<TColumn>>,
pub binary_columns: Option<Vec<u8>>,
pub column_count: Option<i32>,
}
Fields§
§start_row_offset: i64
§rows: Vec<TRow>
§columns: Option<Vec<TColumn>>
§binary_columns: Option<Vec<u8>>
§column_count: Option<i32>
Implementations§
Trait Implementations§
Source§impl Ord for TRowSet
impl Ord for TRowSet
Source§impl PartialOrd for TRowSet
impl PartialOrd for TRowSet
Source§impl TSerializable for TRowSet
impl TSerializable for TRowSet
fn read_from_in_protocol(i_prot: &mut dyn TInputProtocol) -> Result<TRowSet>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for TRowSet
impl StructuralPartialEq for TRowSet
Auto Trait Implementations§
impl Freeze for TRowSet
impl RefUnwindSafe for TRowSet
impl Send for TRowSet
impl Sync for TRowSet
impl Unpin for TRowSet
impl UnwindSafe for TRowSet
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