Module mangadex_api::v5::user::followed_groups
source · [−]Expand description
Builder for the followed scanlation groups endpoint.
https://api.mangadex.org/swagger.html#/Follows/get-user-follows-group
Examples
use uuid::Uuid;
use mangadex_api::v5::MangaDexClient;
use mangadex_api::types::{Password, Username};
let client = MangaDexClient::default();
let _login_res = client
.auth()
.login()
.username(Username::parse("myusername")?)
.password(Password::parse("hunter23")?)
.build()?
.send()
.await?;
let res = client
.user()
.followed_groups()
.limit(1_u32)
.build()?
.send()
.await?;
println!("followed groups: {:?}", res);
Structs
Builder for FollowedGroups
.
Enums
Error type for FollowedGroupsBuilder