pub struct GetMangaAggregate {
pub manga_id: Uuid,
pub translated_language: Vec<Language>,
pub groups: Vec<Uuid>,
/* private fields */
}
Fields§
§manga_id: Uuid
§translated_language: Vec<Language>
§groups: Vec<Uuid>
Implementations§
Source§impl GetMangaAggregate
impl GetMangaAggregate
Sourcepub async fn send(&self) -> MangaAggregateResponse
pub async fn send(&self) -> MangaAggregateResponse
Send the request.
Trait Implementations§
Source§impl Clone for GetMangaAggregate
impl Clone for GetMangaAggregate
Source§fn clone(&self) -> GetMangaAggregate
fn clone(&self) -> GetMangaAggregate
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 GetMangaAggregate
impl Debug for GetMangaAggregate
Auto Trait Implementations§
impl Freeze for GetMangaAggregate
impl !RefUnwindSafe for GetMangaAggregate
impl !Send for GetMangaAggregate
impl !Sync for GetMangaAggregate
impl Unpin for GetMangaAggregate
impl !UnwindSafe for GetMangaAggregate
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