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