Struct google_api_proto::google::datastore::v1::EntityResult
source · pub struct EntityResult {
pub entity: Option<Entity>,
pub version: i64,
pub create_time: Option<Timestamp>,
pub update_time: Option<Timestamp>,
pub cursor: Bytes,
}
Expand description
The result of fetching an entity from Datastore.
Fields§
§entity: Option<Entity>
The resulting entity.
version: i64
The version of the entity, a strictly positive number that monotonically increases with changes to the entity.
This field is set for
[FULL
][google.datastore.v1.EntityResult.ResultType.FULL] entity results.
For [missing][google.datastore.v1.LookupResponse.missing] entities in
LookupResponse
, this is the version of the snapshot that was used to look
up the entity, and it is always set except for eventually consistent reads.
create_time: Option<Timestamp>
The time at which the entity was created.
This field is set for
[FULL
][google.datastore.v1.EntityResult.ResultType.FULL] entity results.
If this entity is missing, this field will not be set.
update_time: Option<Timestamp>
The time at which the entity was last changed.
This field is set for
[FULL
][google.datastore.v1.EntityResult.ResultType.FULL] entity results.
If this entity is missing, this field will not be set.
cursor: Bytes
A cursor that points to the position after the result entity.
Set only when the EntityResult
is part of a QueryResultBatch
message.
Trait Implementations§
source§impl Clone for EntityResult
impl Clone for EntityResult
source§fn clone(&self) -> EntityResult
fn clone(&self) -> EntityResult
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EntityResult
impl Debug for EntityResult
source§impl Default for EntityResult
impl Default for EntityResult
source§impl Message for EntityResult
impl Message for EntityResult
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for EntityResult
impl PartialEq for EntityResult
source§fn eq(&self, other: &EntityResult) -> bool
fn eq(&self, other: &EntityResult) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for EntityResult
Auto Trait Implementations§
impl !Freeze for EntityResult
impl RefUnwindSafe for EntityResult
impl Send for EntityResult
impl Sync for EntityResult
impl Unpin for EntityResult
impl UnwindSafe for EntityResult
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request