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