Enum ql2::response::ResponseNote [−][src]
ResponseNotes are used to provide information about the query response that may be useful for people writing drivers or ORMs. Currently all the notes we send indicate that a stream has certain special properties.
Variants
The stream is a changefeed stream (e.g. r.table('test').changes()).
The stream is a point changefeed stream
(e.g. r.table('test').get(0).changes()).
The stream is an order_by_limit changefeed stream
(e.g. r.table('test').order_by(index: 'id').limit(5).changes()).
The stream is a union of multiple changefeed types that can’t be
collapsed to a single type
(e.g. r.table('test').changes().union(r.table('test').get(0).changes())).
The stream is a changefeed stream and includes notes on what state
the changefeed stream is in (e.g. objects of the form {state: 'initializing'}).
Implementations
impl ResponseNote[src]
pub fn is_valid(value: i32) -> bool[src]
Returns true if value is a variant of ResponseNote.
pub fn from_i32(value: i32) -> Option<ResponseNote>[src]
Converts an i32 to a ResponseNote, or None if value is not a valid variant.
Trait Implementations
impl Clone for ResponseNote[src]
fn clone(&self) -> ResponseNote[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for ResponseNote[src]
impl Debug for ResponseNote[src]
impl Default for ResponseNote[src]
fn default() -> ResponseNote[src]
impl Eq for ResponseNote[src]
impl Hash for ResponseNote[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Ord for ResponseNote[src]
fn cmp(&self, other: &ResponseNote) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<ResponseNote> for ResponseNote[src]
fn eq(&self, other: &ResponseNote) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<ResponseNote> for ResponseNote[src]
fn partial_cmp(&self, other: &ResponseNote) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl StructuralEq for ResponseNote[src]
impl StructuralPartialEq for ResponseNote[src]
Auto Trait Implementations
impl RefUnwindSafe for ResponseNote
impl Send for ResponseNote
impl Sync for ResponseNote
impl Unpin for ResponseNote
impl UnwindSafe for ResponseNote
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,