mangadex_api::v5::user::follows::manga::feed

Module get

Source
Expand description

Builder for the user manga feed endpoint to get a list of new chapters for a user’s manga.

https://api.mangadex.org/swagger.html#/Feed/get-user-follows-manga-feed

§Examples

use mangadex_api::v5::MangaDexClient;
// use mangadex_api_types::{Password, Username};

let client = MangaDexClient::default();

/*

    let _login_res = client
        .auth()
        .login()
        .post()
        .username(Username::parse("myusername")?)
        .password(Password::parse("hunter23")?)
        .send()
        .await?;

 */

let res = client
    .user()
    .follows()
    .manga()
    .feed()
    .get()
    .limit(1u32)
    .send()
    .await?;

println!("Manga feed: {:?}", res);

Structs§