Enum datastore_grpc::google::datastore::v1::entity_result::ResultType[][src]

#[repr(i32)]pub enum ResultType {
    Unspecified,
    Full,
    Projection,
    KeyOnly,
}

Specifies what data the 'entity' field contains. A ResultType is either implied (for example, in LookupResponse.missing from datastore.proto, it is always KEY_ONLY) or specified by context (for example, in message QueryResultBatch, field entity_result_type specifies a ResultType for all the values in field entity_results).

Variants

Unspecified

Unspecified. This value is never used.

Full

The key and properties.

Projection

A projected subset of properties. The entity may have no key.

KeyOnly

Only the key.

Implementations

impl ResultType[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of ResultType.

pub fn from_i32(value: i32) -> Option<ResultType>[src]

Converts an i32 to a ResultType, or None if value is not a valid variant.

Trait Implementations

impl Clone for ResultType[src]

impl Copy for ResultType[src]

impl Debug for ResultType[src]

impl Default for ResultType[src]

impl Eq for ResultType[src]

impl Hash for ResultType[src]

impl Ord for ResultType[src]

impl PartialEq<ResultType> for ResultType[src]

impl PartialOrd<ResultType> for ResultType[src]

impl StructuralEq for ResultType[src]

impl StructuralPartialEq for ResultType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]