pub struct GetUserMangaList { /* private fields */ }Implementations§
Source§impl GetUserMangaList
impl GetUserMangaList
Sourcepub fn new(
user_name: String,
nsfw: bool,
fields: Option<&MangaCommonFields>,
status: Option<UserMangaListStatus>,
sort: Option<UserMangaListSort>,
limit: Option<u16>,
offset: Option<u32>,
) -> Result<Self, MangaApiError>
pub fn new( user_name: String, nsfw: bool, fields: Option<&MangaCommonFields>, status: Option<UserMangaListStatus>, sort: Option<UserMangaListSort>, limit: Option<u16>, offset: Option<u32>, ) -> Result<Self, MangaApiError>
Create new Get user manga list query
Limit must be within [1, 1000]. Defaults to 100
Sourcepub fn builder(user_name: &str) -> GetUserMangaListBuilder<'static>
pub fn builder(user_name: &str) -> GetUserMangaListBuilder<'static>
Use builder pattern for building up the query with required arguments
Trait Implementations§
Source§impl Debug for GetUserMangaList
impl Debug for GetUserMangaList
Auto Trait Implementations§
impl Freeze for GetUserMangaList
impl RefUnwindSafe for GetUserMangaList
impl Send for GetUserMangaList
impl Sync for GetUserMangaList
impl Unpin for GetUserMangaList
impl UnsafeUnpin for GetUserMangaList
impl UnwindSafe for GetUserMangaList
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