pub struct SqliteQueryResult {
pub data: Value,
}Expand description
Result of a query operation.
Fields§
§data: ValueThe result data as JSON.
Implementations§
Trait Implementations§
Source§impl Clone for SqliteQueryResult
impl Clone for SqliteQueryResult
Source§fn clone(&self) -> SqliteQueryResult
fn clone(&self) -> SqliteQueryResult
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 moreAuto Trait Implementations§
impl Freeze for SqliteQueryResult
impl RefUnwindSafe for SqliteQueryResult
impl Send for SqliteQueryResult
impl Sync for SqliteQueryResult
impl Unpin for SqliteQueryResult
impl UnwindSafe for SqliteQueryResult
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