pub struct ListResponse {
pub results: Object,
pub pagination: Pagination,
pub format: String,
pub version: String,
pub timestamp: NaiveDateTime,
}
Expand description
The API returns seven primary objects in the body of the response: resultsPerPage, startIndex, totalResults, format, version, timestamp, and Object. The format and version objects identify the format and version of the API response. timestamp identifies when the response was generated.
Fields§
§results: Object
results Object
pagination: Pagination
pagination Pagination
format: String
format
version: String
version
timestamp: NaiveDateTime
timestamp
Trait Implementations§
Source§impl Clone for ListResponse
impl Clone for ListResponse
Source§fn clone(&self) -> ListResponse
fn clone(&self) -> ListResponse
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 ListResponse
impl Debug for ListResponse
Source§impl<'de> Deserialize<'de> for ListResponse
impl<'de> Deserialize<'de> for ListResponse
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 ListResponse
impl PartialEq for ListResponse
Source§impl Serialize for ListResponse
impl Serialize for ListResponse
impl StructuralPartialEq for ListResponse
Auto Trait Implementations§
impl Freeze for ListResponse
impl RefUnwindSafe for ListResponse
impl Send for ListResponse
impl Sync for ListResponse
impl Unpin for ListResponse
impl UnwindSafe for ListResponse
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