pub struct TarantoolSqlResponse { /* private fields */ }Implementations§
Source§impl TarantoolSqlResponse
impl TarantoolSqlResponse
Sourcepub fn decode_result_set<'de, T>(self) -> Result<Vec<T>>where
T: Deserialize<'de>,
pub fn decode_result_set<'de, T>(self) -> Result<Vec<T>>where
T: Deserialize<'de>,
decode tarantool response to any serder deserializable struct
Sourcepub fn decode_untyped_result_set(self) -> Result<Vec<UntypedRow>>
pub fn decode_untyped_result_set(self) -> Result<Vec<UntypedRow>>
decode rows to vec of columns
Sourcepub fn metadata(&self) -> SqlResultMetadata
pub fn metadata(&self) -> SqlResultMetadata
result set metadata
Trait Implementations§
Source§impl Into<TarantoolSqlResponse> for TarantoolResponse
impl Into<TarantoolSqlResponse> for TarantoolResponse
Source§fn into(self) -> TarantoolSqlResponse
fn into(self) -> TarantoolSqlResponse
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl !Freeze for TarantoolSqlResponse
impl RefUnwindSafe for TarantoolSqlResponse
impl Send for TarantoolSqlResponse
impl Sync for TarantoolSqlResponse
impl Unpin for TarantoolSqlResponse
impl UnsafeUnpin for TarantoolSqlResponse
impl UnwindSafe for TarantoolSqlResponse
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