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