Struct google_youtube3::api::PageInfo
source · pub struct PageInfo {
pub results_per_page: Option<i32>,
pub total_results: Option<i32>,
}
Expand description
Paging details for lists of resources, including total number of items available and number of resources returned in a single page.
This type is not used in any activity, and only used as part of another schema.
Fields§
§results_per_page: Option<i32>
The number of results included in the API response.
total_results: Option<i32>
The total number of results in the result set.
Trait Implementations§
source§impl<'de> Deserialize<'de> for PageInfo
impl<'de> Deserialize<'de> for PageInfo
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
impl Part for PageInfo
Auto Trait Implementations§
impl RefUnwindSafe for PageInfo
impl Send for PageInfo
impl Sync for PageInfo
impl Unpin for PageInfo
impl UnwindSafe for PageInfo
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