pub struct OwnedResult {
pub result: QueryResult,
/* private fields */
}Expand description
Owned query result that carries its arena alongside the result metadata.
Generated code calls .row(i) to access individual rows. This struct
bundles the arena with the result so callsites don’t manage arenas manually.
Fields§
§result: QueryResultImplementations§
Trait Implementations§
Source§impl Debug for OwnedResult
impl Debug for OwnedResult
Auto Trait Implementations§
impl Freeze for OwnedResult
impl RefUnwindSafe for OwnedResult
impl Send for OwnedResult
impl Sync for OwnedResult
impl Unpin for OwnedResult
impl UnsafeUnpin for OwnedResult
impl UnwindSafe for OwnedResult
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