pub struct UpdateCustomList {
pub list_id: Uuid,
pub name: Option<String>,
pub visibility: Option<CustomListVisibility>,
pub manga: Vec<Uuid>,
pub version: u32,
/* private fields */
}
Fields§
§list_id: Uuid
§name: Option<String>
§visibility: Option<CustomListVisibility>
§manga: Vec<Uuid>
§version: u32
Implementations§
Source§impl UpdateCustomList
impl UpdateCustomList
Sourcepub async fn send(&self) -> CustomListResponse
pub async fn send(&self) -> CustomListResponse
Send the request.
Trait Implementations§
Source§impl Clone for UpdateCustomList
impl Clone for UpdateCustomList
Source§fn clone(&self) -> UpdateCustomList
fn clone(&self) -> UpdateCustomList
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 moreSource§impl Debug for UpdateCustomList
impl Debug for UpdateCustomList
Auto Trait Implementations§
impl Freeze for UpdateCustomList
impl !RefUnwindSafe for UpdateCustomList
impl !Send for UpdateCustomList
impl !Sync for UpdateCustomList
impl Unpin for UpdateCustomList
impl !UnwindSafe for UpdateCustomList
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