Struct wasmcloud_interface_sqldb::ExecuteResult
source · [−]pub struct ExecuteResult {
pub rows_affected: u64,
pub error: Option<SqlDbError>,
}
Expand description
Result of an Execute operation
Fields
rows_affected: u64
the number of rows affected by the query
error: Option<SqlDbError>
optional error information. If error is included in the FetchResult, other values should be ignored.
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ExecuteResult
impl Send for ExecuteResult
impl Sync for ExecuteResult
impl Unpin for ExecuteResult
impl UnwindSafe for ExecuteResult
Blanket Implementations
Mutably borrows from an owned value. Read more