pub struct CreateMangaRelation {
pub manga_id: Uuid,
pub target_manga: Uuid,
pub relation: MangaRelation,
/* private fields */
}
Fields§
§manga_id: Uuid
§target_manga: Uuid
§relation: MangaRelation
Implementations§
Source§impl CreateMangaRelation
impl CreateMangaRelation
Sourcepub async fn send(&self) -> MangaRelationListResponse
pub async fn send(&self) -> MangaRelationListResponse
Send the request.
Trait Implementations§
Source§impl Clone for CreateMangaRelation
impl Clone for CreateMangaRelation
Source§fn clone(&self) -> CreateMangaRelation
fn clone(&self) -> CreateMangaRelation
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 CreateMangaRelation
impl Debug for CreateMangaRelation
Source§impl Default for CreateMangaRelation
impl Default for CreateMangaRelation
Source§fn default() -> CreateMangaRelation
fn default() -> CreateMangaRelation
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateMangaRelation
impl !RefUnwindSafe for CreateMangaRelation
impl !Send for CreateMangaRelation
impl !Sync for CreateMangaRelation
impl Unpin for CreateMangaRelation
impl !UnwindSafe for CreateMangaRelation
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