pub struct ListingsResponse {
pub data: Vec<Listing>,
pub cursor: Option<String>,
}Expand description
Response from get_all_listings
Fields§
§data: Vec<Listing>§cursor: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ListingsResponse
impl Clone for ListingsResponse
Source§fn clone(&self) -> ListingsResponse
fn clone(&self) -> ListingsResponse
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 ListingsResponse
impl Debug for ListingsResponse
Source§impl<'de> Deserialize<'de> for ListingsResponse
impl<'de> Deserialize<'de> for ListingsResponse
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
Auto Trait Implementations§
impl Freeze for ListingsResponse
impl RefUnwindSafe for ListingsResponse
impl Send for ListingsResponse
impl Sync for ListingsResponse
impl Unpin for ListingsResponse
impl UnwindSafe for ListingsResponse
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