pub struct ListingSearchResponse {
pub schema: String,
pub generated_at: u64,
pub query: ListingQuery,
pub result_count: u64,
pub results: Vec<Listing>,
pub errors: Vec<GenericListingSearchError>,
}Expand description
Signed marketplace search response.
Fields§
§schema: String§generated_at: u64§query: ListingQuery§result_count: u64§results: Vec<Listing>§errors: Vec<GenericListingSearchError>Trait Implementations§
Source§impl Clone for ListingSearchResponse
impl Clone for ListingSearchResponse
Source§fn clone(&self) -> ListingSearchResponse
fn clone(&self) -> ListingSearchResponse
Returns a duplicate 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 ListingSearchResponse
impl Debug for ListingSearchResponse
Source§impl<'de> Deserialize<'de> for ListingSearchResponse
impl<'de> Deserialize<'de> for ListingSearchResponse
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 ListingSearchResponse
impl PartialEq for ListingSearchResponse
Source§impl Serialize for ListingSearchResponse
impl Serialize for ListingSearchResponse
impl StructuralPartialEq for ListingSearchResponse
Auto Trait Implementations§
impl Freeze for ListingSearchResponse
impl RefUnwindSafe for ListingSearchResponse
impl Send for ListingSearchResponse
impl Sync for ListingSearchResponse
impl Unpin for ListingSearchResponse
impl UnsafeUnpin for ListingSearchResponse
impl UnwindSafe for ListingSearchResponse
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