pub struct EntitySearchResponse {
pub entities: Option<Vec<Entity>>,
pub next_results: Option<String>,
pub total: Option<i64>,
}
Expand description
EntitySearchResponse : Search request for entities
Fields§
§entities: Option<Vec<Entity>>
§next_results: Option<String>
§total: Option<i64>
Implementations§
source§impl EntitySearchResponse
impl EntitySearchResponse
sourcepub fn new() -> EntitySearchResponse
pub fn new() -> EntitySearchResponse
Search request for entities
Trait Implementations§
source§impl Clone for EntitySearchResponse
impl Clone for EntitySearchResponse
source§fn clone(&self) -> EntitySearchResponse
fn clone(&self) -> EntitySearchResponse
Returns a copy of the value. Read more
1.0.0 · 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 EntitySearchResponse
impl Debug for EntitySearchResponse
source§impl Default for EntitySearchResponse
impl Default for EntitySearchResponse
source§fn default() -> EntitySearchResponse
fn default() -> EntitySearchResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for EntitySearchResponse
impl<'de> Deserialize<'de> for EntitySearchResponse
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 EntitySearchResponse
impl PartialEq for EntitySearchResponse
source§fn eq(&self, other: &EntitySearchResponse) -> bool
fn eq(&self, other: &EntitySearchResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for EntitySearchResponse
impl Serialize for EntitySearchResponse
impl StructuralPartialEq for EntitySearchResponse
Auto Trait Implementations§
impl RefUnwindSafe for EntitySearchResponse
impl Send for EntitySearchResponse
impl Sync for EntitySearchResponse
impl Unpin for EntitySearchResponse
impl UnwindSafe for EntitySearchResponse
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