Struct tmdb_api::changes::list::ChangeList
source · pub struct ChangeList {
pub start_date: Option<NaiveDate>,
pub end_date: Option<NaiveDate>,
pub page: Option<u32>,
/* private fields */
}Expand description
Command to list changes
Fields§
§start_date: Option<NaiveDate>Filter the results with a start date.
end_date: Option<NaiveDate>Filter the results with a end date.
page: Option<u32>Which page to query.
Implementations§
Trait Implementations§
source§impl Clone for ChangeList
impl Clone for ChangeList
source§fn clone(&self) -> ChangeList
fn clone(&self) -> ChangeList
Returns a copy 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 Command for ChangeList
impl Command for ChangeList
type Output = PaginatedResult<Change>
fn path(&self) -> Cow<'static, str>
fn params(&self) -> Vec<(&'static str, Cow<'_, str>)>
fn execute<'life0, 'life1, 'async_trait>( &'life0 self, client: &'life1 Client ) -> Pin<Box<dyn Future<Output = Result<Self::Output, Error>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
source§impl Debug for ChangeList
impl Debug for ChangeList
source§impl Default for ChangeList
impl Default for ChangeList
source§fn default() -> ChangeList
fn default() -> ChangeList
Returns the “default value” for a type. Read more