pub struct IsFollowingManga {
pub manga_id: Uuid,
/* private fields */
}
Expand description
Check if the logged-in user follows a manga.
Makes a request to GET /user/follows/manga/{id}
.
Fields§
§manga_id: Uuid
Implementations§
Source§impl IsFollowingManga
impl IsFollowingManga
pub async fn send(&mut self) -> Result<IsFollowingResponse>
Trait Implementations§
Source§impl Clone for IsFollowingManga
impl Clone for IsFollowingManga
Source§fn clone(&self) -> IsFollowingManga
fn clone(&self) -> IsFollowingManga
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 IsFollowingManga
impl Debug for IsFollowingManga
Source§impl Endpoint for IsFollowingManga
impl Endpoint for IsFollowingManga
Auto Trait Implementations§
impl Freeze for IsFollowingManga
impl !RefUnwindSafe for IsFollowingManga
impl !Send for IsFollowingManga
impl !Sync for IsFollowingManga
impl Unpin for IsFollowingManga
impl !UnwindSafe for IsFollowingManga
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