pub struct GetScreenerResponse {
pub items: Option<Vec<ScreenerItem>>,
pub page: Option<u32>,
pub page_size: Option<u32>,
pub total: Option<u32>,
pub total_pages: Option<u32>,
}Expand description
Paginated screener response sorted by quoteVolume24h desc (nulls last).
JSON schema
{
"description": "Paginated screener response sorted by quoteVolume24h desc (nulls last).",
"type": "object",
"properties": {
"items": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/components/schemas/ScreenerItem"
}
},
"page": {
"description": "Current page number",
"examples": [
1
],
"type": [
"integer",
"null"
],
"format": "uint32"
},
"pageSize": {
"description": "Items per page",
"examples": [
50
],
"type": [
"integer",
"null"
],
"format": "uint32"
},
"total": {
"description": "Total number of trading pairs after filtering",
"examples": [
37
],
"type": [
"integer",
"null"
],
"format": "uint32"
},
"totalPages": {
"description": "Total number of pages",
"examples": [
1
],
"type": [
"integer",
"null"
],
"format": "uint32"
}
}
}Fields§
§items: Option<Vec<ScreenerItem>>§page: Option<u32>Current page number
page_size: Option<u32>Items per page
total: Option<u32>Total number of trading pairs after filtering
total_pages: Option<u32>Total number of pages
Trait Implementations§
Source§impl Clone for GetScreenerResponse
impl Clone for GetScreenerResponse
Source§fn clone(&self) -> GetScreenerResponse
fn clone(&self) -> GetScreenerResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetScreenerResponse
impl Debug for GetScreenerResponse
Source§impl Default for GetScreenerResponse
impl Default for GetScreenerResponse
Source§impl<'de> Deserialize<'de> for GetScreenerResponse
impl<'de> Deserialize<'de> for GetScreenerResponse
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 GetScreenerResponse
impl RefUnwindSafe for GetScreenerResponse
impl Send for GetScreenerResponse
impl Sync for GetScreenerResponse
impl Unpin for GetScreenerResponse
impl UnsafeUnpin for GetScreenerResponse
impl UnwindSafe for GetScreenerResponse
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