pub trait ListingProvider: Source {
// Required method
fn get_manga_list(
&self,
listing: Listing,
page: i32,
) -> Result<MangaPageResult>;
}Expand description
A source that provides listings.
Required Methods§
Sourcefn get_manga_list(&self, listing: Listing, page: i32) -> Result<MangaPageResult>
fn get_manga_list(&self, listing: Listing, page: i32) -> Result<MangaPageResult>
Returns the manga for the provided listing.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.