pub struct ApiMetadata {
pub trace_id: String,
pub request_id: String,
pub graph_version: u64,
pub index_version: Option<u64>,
pub indexed_graph_version: Option<u64>,
pub stale: bool,
}Expand description
Common metadata that every successful API response must carry.
Fields§
§trace_id: String§request_id: String§graph_version: u64§index_version: Option<u64>§indexed_graph_version: Option<u64>§stale: boolImplementations§
Source§impl ApiMetadata
impl ApiMetadata
Sourcepub fn graph_only(context: &RequestContext, graph_version: GraphVersion) -> Self
pub fn graph_only(context: &RequestContext, graph_version: GraphVersion) -> Self
Builds response metadata for graph-only operations.
Sourcepub fn indexed(
context: &RequestContext,
graph_version: GraphVersion,
index_version: Option<u64>,
indexed_graph_version: Option<GraphVersion>,
stale: bool,
) -> Self
pub fn indexed( context: &RequestContext, graph_version: GraphVersion, index_version: Option<u64>, indexed_graph_version: Option<GraphVersion>, stale: bool, ) -> Self
Builds response metadata for operations that used derived indexes.
Trait Implementations§
Source§impl Clone for ApiMetadata
impl Clone for ApiMetadata
Source§fn clone(&self) -> ApiMetadata
fn clone(&self) -> ApiMetadata
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 ApiMetadata
impl Debug for ApiMetadata
Source§impl<'de> Deserialize<'de> for ApiMetadata
impl<'de> Deserialize<'de> for ApiMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ApiMetadata
impl PartialEq for ApiMetadata
Source§fn eq(&self, other: &ApiMetadata) -> bool
fn eq(&self, other: &ApiMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ApiMetadata
impl Serialize for ApiMetadata
impl Eq for ApiMetadata
impl StructuralPartialEq for ApiMetadata
Auto Trait Implementations§
impl Freeze for ApiMetadata
impl RefUnwindSafe for ApiMetadata
impl Send for ApiMetadata
impl Sync for ApiMetadata
impl Unpin for ApiMetadata
impl UnsafeUnpin for ApiMetadata
impl UnwindSafe for ApiMetadata
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.