Movie Html Parsing Template
Template Methods
- [Imports](#imports)
- [Methods](#methods)
- [Structs](#structs)
- [Page](#page)
- [Implmentation](#implmentation)
- [Search](#search)
- [Implmentation](#implmentation-1)
- [Info](#info)
- [Episodes](#episodes)
- [Implmentation](#implmentation-2)
- [Seasons](#seasons)
- [Implmentations](#implmentations)
- [Servers](#servers)
- [Implmentations](#implmentations-1)
# Imports
```rs
use crate::models::types::{IEpisodeServer, IMovieEpisode, TvType};
use visdom::{types::Elements, Vis};
```
# Methods
```rs
pub fn create_html_fragment(page_html: &str) -> Elements<'_> {
Vis::load(page_html).unwrap()
}
```
# Structs
## Page
```rs
pub struct Page<'a> {
pub elements: Elements<'a>,
}
```
### Implmentation
```rs
impl<'a> Page<'a> {
pub fn has_next_page(&self) -> bool {
todo!()
}
pub fn total_pages(&self) -> Option {
todo!()
}
pub fn page_ids(&self) -> Vec