Enum exasol::query::QueryResult
source · [−]Expand description
Enum containing the result of a query
ResultSet variant holds a ResultSet
RowCount variant holds the affected row count
Variants
ResultSet(ResultSet)
RowCount(u32)
Trait Implementations
sourceimpl Debug for QueryResult
impl Debug for QueryResult
sourceimpl TryFrom<QueryResult> for ResultSet
impl TryFrom<QueryResult> for ResultSet
type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
sourcefn try_from(value: QueryResult) -> Result<Self, Self::Error>
fn try_from(value: QueryResult) -> Result<Self, Self::Error>
Performs the conversion.
sourceimpl TryFrom<QueryResult> for u32
impl TryFrom<QueryResult> for u32
type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
sourcefn try_from(value: QueryResult) -> Result<Self, Self::Error>
fn try_from(value: QueryResult) -> Result<Self, Self::Error>
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for QueryResult
impl !Send for QueryResult
impl !Sync for QueryResult
impl Unpin for QueryResult
impl !UnwindSafe for QueryResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more