pub struct QueryEntityResponse<E>{
pub common_storage_response_headers: CommonStorageResponseHeaders,
pub metadata: String,
pub entities: Vec<E>,
/* private fields */
}Fields§
§common_storage_response_headers: CommonStorageResponseHeaders§metadata: String§entities: Vec<E>Trait Implementations§
Source§impl<E> Clone for QueryEntityResponse<E>
impl<E> Clone for QueryEntityResponse<E>
Source§fn clone(&self) -> QueryEntityResponse<E>
fn clone(&self) -> QueryEntityResponse<E>
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<E> Continuable for QueryEntityResponse<E>
impl<E> Continuable for QueryEntityResponse<E>
type Continuation = (String, Option<String>)
fn continuation(&self) -> Option<Self::Continuation>
Source§impl<E> Debug for QueryEntityResponse<E>
impl<E> Debug for QueryEntityResponse<E>
Source§impl<E: DeserializeOwned + Send + Sync> TryFrom<CollectedResponse> for QueryEntityResponse<E>
impl<E: DeserializeOwned + Send + Sync> TryFrom<CollectedResponse> for QueryEntityResponse<E>
Auto Trait Implementations§
impl<E> Freeze for QueryEntityResponse<E>
impl<E> RefUnwindSafe for QueryEntityResponse<E>where
E: RefUnwindSafe,
impl<E> Send for QueryEntityResponse<E>
impl<E> Sync for QueryEntityResponse<E>
impl<E> Unpin for QueryEntityResponse<E>where
E: Unpin,
impl<E> UnsafeUnpin for QueryEntityResponse<E>
impl<E> UnwindSafe for QueryEntityResponse<E>where
E: UnwindSafe,
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