pub struct GetMangaReadChaptersBuilder {
manga_id: Option<Uuid>,
/* private fields */
}
Expand description
Builder for GetMangaReadChapters
.
Fields§
§manga_id: Option<Uuid>
Implementations§
Source§impl GetMangaReadChaptersBuilder
impl GetMangaReadChaptersBuilder
pub fn manga_id<VALUE: Into<Uuid>>(&mut self, value: VALUE) -> &mut Self
Sourcepub fn build(&self) -> Result<GetMangaReadChapters, BuilderError>
pub fn build(&self) -> Result<GetMangaReadChapters, BuilderError>
Sourcefn create_empty() -> Self
fn create_empty() -> Self
Create an empty builder, with all fields set to None
or PhantomData
.
Source§impl GetMangaReadChaptersBuilder
impl GetMangaReadChaptersBuilder
pub async fn send(&self) -> UngroupedMangaReadMarkersResponse
Trait Implementations§
Source§impl Clone for GetMangaReadChaptersBuilder
impl Clone for GetMangaReadChaptersBuilder
Source§fn clone(&self) -> GetMangaReadChaptersBuilder
fn clone(&self) -> GetMangaReadChaptersBuilder
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 GetMangaReadChaptersBuilder
impl !RefUnwindSafe for GetMangaReadChaptersBuilder
impl !Send for GetMangaReadChaptersBuilder
impl !Sync for GetMangaReadChaptersBuilder
impl Unpin for GetMangaReadChaptersBuilder
impl !UnwindSafe for GetMangaReadChaptersBuilder
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