pub struct AddMangaBatchViaCustomListBuilder {
list_id: Option<Uuid>,
manga_ids: Option<Vec<Uuid>>,
/* private fields */
}
Expand description
Builder for AddMangaBatchViaCustomList
.
Fields§
§list_id: Option<Uuid>
CustomList ID.
manga_ids: Option<Vec<Uuid>>
Implementations§
Source§impl AddMangaBatchViaCustomListBuilder
impl AddMangaBatchViaCustomListBuilder
pub fn manga_ids<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<AddMangaBatchViaCustomList, BuilderError>
pub fn build(&self) -> Result<AddMangaBatchViaCustomList, BuilderError>
Sourcefn create_empty() -> Self
fn create_empty() -> Self
Create an empty builder, with all fields set to None
or PhantomData
.
Trait Implementations§
Source§impl Clone for AddMangaBatchViaCustomListBuilder
impl Clone for AddMangaBatchViaCustomListBuilder
Source§fn clone(&self) -> AddMangaBatchViaCustomListBuilder
fn clone(&self) -> AddMangaBatchViaCustomListBuilder
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 AddMangaBatchViaCustomListBuilder
impl !RefUnwindSafe for AddMangaBatchViaCustomListBuilder
impl !Send for AddMangaBatchViaCustomListBuilder
impl !Sync for AddMangaBatchViaCustomListBuilder
impl Unpin for AddMangaBatchViaCustomListBuilder
impl !UnwindSafe for AddMangaBatchViaCustomListBuilder
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