pub enum ProvenResult {
Get(Option<Record>),
Query(QueryResult),
}Expand description
Complete logical result embedded in a result proof.
Variants§
Get(Option<Record>)
Exact lookup result, including verifiable absence.
Query(QueryResult)
Structured query result including cursor and aggregation.
Trait Implementations§
Source§impl Clone for ProvenResult
impl Clone for ProvenResult
Source§fn clone(&self) -> ProvenResult
fn clone(&self) -> ProvenResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProvenResult
impl Debug for ProvenResult
impl Eq for ProvenResult
Source§impl PartialEq for ProvenResult
impl PartialEq for ProvenResult
impl StructuralPartialEq for ProvenResult
Auto Trait Implementations§
impl Freeze for ProvenResult
impl RefUnwindSafe for ProvenResult
impl Send for ProvenResult
impl Sync for ProvenResult
impl Unpin for ProvenResult
impl UnsafeUnpin for ProvenResult
impl UnwindSafe for ProvenResult
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