pub struct SettingSearchResponse {
pub entity_search_response: EntitySearchResponse,
pub count: Option<i32>,
pub results: Vec<SettingResult>,
}Expand description
Defines a setting search response item
Fields§
§entity_search_response: EntitySearchResponse§count: Option<i32>Total number of matched setting documents.
results: Vec<SettingResult>List of top matched setting documents.
Implementations§
Trait Implementations§
Source§impl Clone for SettingSearchResponse
impl Clone for SettingSearchResponse
Source§fn clone(&self) -> SettingSearchResponse
fn clone(&self) -> SettingSearchResponse
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 SettingSearchResponse
impl Debug for SettingSearchResponse
Source§impl Default for SettingSearchResponse
impl Default for SettingSearchResponse
Source§fn default() -> SettingSearchResponse
fn default() -> SettingSearchResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SettingSearchResponse
impl<'de> Deserialize<'de> for SettingSearchResponse
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 SettingSearchResponse
impl PartialEq for SettingSearchResponse
Source§impl Serialize for SettingSearchResponse
impl Serialize for SettingSearchResponse
impl StructuralPartialEq for SettingSearchResponse
Auto Trait Implementations§
impl Freeze for SettingSearchResponse
impl RefUnwindSafe for SettingSearchResponse
impl Send for SettingSearchResponse
impl Sync for SettingSearchResponse
impl Unpin for SettingSearchResponse
impl UnwindSafe for SettingSearchResponse
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