pub enum ArrayQueryResult {
Complete,
Incomplete,
}Expand description
An result type of querying an array of objects
Variants§
Complete
Objects are queried successfully
Incomplete
There are some objects left(i.e. buffer was too small)
Trait Implementations§
Source§impl Clone for ArrayQueryResult
impl Clone for ArrayQueryResult
Source§fn clone(&self) -> ArrayQueryResult
fn clone(&self) -> ArrayQueryResult
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 moreSource§impl Debug for ArrayQueryResult
impl Debug for ArrayQueryResult
Source§impl PartialEq for ArrayQueryResult
impl PartialEq for ArrayQueryResult
impl Copy for ArrayQueryResult
impl Eq for ArrayQueryResult
impl StructuralPartialEq for ArrayQueryResult
Auto Trait Implementations§
impl Freeze for ArrayQueryResult
impl RefUnwindSafe for ArrayQueryResult
impl Send for ArrayQueryResult
impl Sync for ArrayQueryResult
impl Unpin for ArrayQueryResult
impl UnwindSafe for ArrayQueryResult
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