pub struct FollowedGroups {
pub limit: Option<u32>,
pub offset: Option<u32>,
pub includes: Vec<ReferenceExpansionResource>,
/* private fields */
}
Fields§
§limit: Option<u32>
§offset: Option<u32>
§includes: Vec<ReferenceExpansionResource>
Implementations§
Source§impl FollowedGroups
impl FollowedGroups
Sourcepub async fn send(&self) -> GroupListResponse
pub async fn send(&self) -> GroupListResponse
Send the request.
Trait Implementations§
Source§impl Clone for FollowedGroups
impl Clone for FollowedGroups
Source§fn clone(&self) -> FollowedGroups
fn clone(&self) -> FollowedGroups
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 FollowedGroups
impl Debug for FollowedGroups
Source§impl Default for FollowedGroups
impl Default for FollowedGroups
Source§fn default() -> FollowedGroups
fn default() -> FollowedGroups
Returns the “default value” for a type. Read more
Source§impl Endpoint for FollowedGroups
impl Endpoint for FollowedGroups
Source§type Response = Result<Results<ApiObject<ScanlationGroupAttributes>>, Error>
type Response = Result<Results<ApiObject<ScanlationGroupAttributes>>, Error>
The response type.
Source§fn require_auth(&self) -> bool
fn require_auth(&self) -> bool
Get whether auth is required for this request.
type Query = FollowedGroups
type Body = ()
fn body(&self) -> Option<&Self::Body>
fn multipart(&self) -> Option<Form>
Auto Trait Implementations§
impl Freeze for FollowedGroups
impl !RefUnwindSafe for FollowedGroups
impl !Send for FollowedGroups
impl !Sync for FollowedGroups
impl Unpin for FollowedGroups
impl !UnwindSafe for FollowedGroups
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