Struct mangadex_api::v2::builder::GetGroupBuilder[][src]

pub struct GetGroupBuilder<'a> {
    md_client: &'a MangaDexV2,
    id: GroupId,
    include: Option<String>,
}

Builder for the /v2/group/{id} endpoint.

Fields

md_client: &'a MangaDexV2id: GroupIdinclude: Option<String>

Implementations

impl<'a> GetGroupBuilder<'a>[src]

pub fn new(md_client: &'a MangaDexV2, id: GroupId) -> Self[src]

pub fn include<T: Into<String>>(&mut self, include: T) -> &mut Self[src]

Include additional information with the group.

Available values

  • chapters: Include partial chapter information.

pub fn include_chapters(&mut self) -> &mut Self[src]

Convenience method to include partial chapter information with the user.

pub async fn send(&self) -> Result<GroupResponseType, Error>[src]

Send the request to MangaDex with the inputted parameters.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for GetGroupBuilder<'a>

impl<'a> Send for GetGroupBuilder<'a>

impl<'a> Sync for GetGroupBuilder<'a>

impl<'a> Unpin for GetGroupBuilder<'a>

impl<'a> !UnwindSafe for GetGroupBuilder<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.