pub struct DeleteMangaBatchViaCustomListBuilder {
list_id: Option<Uuid>,
manga_ids: Option<Vec<Uuid>>,
/* private fields */
}
Expand description
Builder for DeleteMangaBatchViaCustomList
.
Fields§
§list_id: Option<Uuid>
CustomList ID.
manga_ids: Option<Vec<Uuid>>
Implementations§
Source§impl DeleteMangaBatchViaCustomListBuilder
impl DeleteMangaBatchViaCustomListBuilder
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<DeleteMangaBatchViaCustomList, BuilderError>
pub fn build(&self) -> Result<DeleteMangaBatchViaCustomList, 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 DeleteMangaBatchViaCustomListBuilder
impl Clone for DeleteMangaBatchViaCustomListBuilder
Source§fn clone(&self) -> DeleteMangaBatchViaCustomListBuilder
fn clone(&self) -> DeleteMangaBatchViaCustomListBuilder
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 DeleteMangaBatchViaCustomListBuilder
impl !RefUnwindSafe for DeleteMangaBatchViaCustomListBuilder
impl !Send for DeleteMangaBatchViaCustomListBuilder
impl !Sync for DeleteMangaBatchViaCustomListBuilder
impl Unpin for DeleteMangaBatchViaCustomListBuilder
impl !UnwindSafe for DeleteMangaBatchViaCustomListBuilder
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