pub struct Response {
pub page: Page,
pub movies: Vec<Movie>,
}Expand description
Represents the response from a movie listing page.
Contains pagination info and a list of parsed movies.
Fields§
§page: PagePagination information.
movies: Vec<Movie>List of movies parsed from the page.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Response
impl RefUnwindSafe for Response
impl Send for Response
impl Sync for Response
impl Unpin for Response
impl UnsafeUnpin for Response
impl UnwindSafe for Response
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