pub struct GetMangaCustomListsBuilder {
manga_id: Option<Uuid>,
limit: Option<Option<u32>>,
offset: Option<Option<u32>>,
/* private fields */
}
Expand description
Builder for GetMangaCustomLists
.
Fields§
§manga_id: Option<Uuid>
§limit: Option<Option<u32>>
§offset: Option<Option<u32>>
Implementations§
Source§impl GetMangaCustomListsBuilder
impl GetMangaCustomListsBuilder
pub fn manga_id<VALUE: Into<Uuid>>(&mut self, value: VALUE) -> &mut Self
pub fn limit<VALUE: Into<u32>>(&mut self, value: VALUE) -> &mut Self
pub fn offset<VALUE: Into<u32>>(&mut self, value: VALUE) -> &mut Self
Sourcepub fn build(&self) -> Result<GetMangaCustomLists, BuilderError>
pub fn build(&self) -> Result<GetMangaCustomLists, BuilderError>
Sourcefn create_empty() -> Self
fn create_empty() -> Self
Create an empty builder, with all fields set to None
or PhantomData
.
Source§impl GetMangaCustomListsBuilder
impl GetMangaCustomListsBuilder
pub async fn send(&self) -> CustomListListResponse
Trait Implementations§
Source§impl Clone for GetMangaCustomListsBuilder
impl Clone for GetMangaCustomListsBuilder
Source§fn clone(&self) -> GetMangaCustomListsBuilder
fn clone(&self) -> GetMangaCustomListsBuilder
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for GetMangaCustomListsBuilder
impl !RefUnwindSafe for GetMangaCustomListsBuilder
impl !Send for GetMangaCustomListsBuilder
impl !Sync for GetMangaCustomListsBuilder
impl Unpin for GetMangaCustomListsBuilder
impl !UnwindSafe for GetMangaCustomListsBuilder
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