Struct CharacterMugshotsClient

Source
pub struct CharacterMugshotsClient { /* private fields */ }

Implementations§

Source§

impl CharacterMugshotsClient

Source

pub async fn get( &self, request_builder: RequestBuilder, ) -> Result<Vec<CharacterMugshot>, Box<dyn Error + Send + Sync + 'static>>

Receives a configured RequestBuilder an returns a result containing a collection

Source

pub async fn get_by_id( &self, id: usize, limit: usize, ) -> Result<Vec<CharacterMugshot>, Box<dyn Error + Send + Sync + 'static>>

Returns a collection filtered by id and limits the retrieved registries using limit parameter value.

Source

pub async fn get_first_by_id( &self, id: usize, ) -> Result<CharacterMugshot, Box<dyn Error + Send + Sync + 'static>>

Returns the element by Id for this client in Option format.

Source§

impl CharacterMugshotsClient

Source

pub async fn download_by_id<S: Into<String>>( &self, id: usize, path: S, media_quality: MediaQuality, ) -> Result<(), Box<dyn Error + Send + Sync + 'static>>

Download to the given path the resource specified in the Id MediaQuality is an enum that specifies different image sizes

§Examples
use igdb_rs::client::IGDBClient;
use igdb_rs::media_quality::MediaQuality;
let client = IGDBClient::new("key");
let screenshot_client = client.screenshots();
screenshot_client.download_by_id(12400, "screen.jpg".to_string(), MediaQuality::ScreenshotHuge,);
Source

pub async fn get_resource_by_id( &self, id: usize, media_quality: MediaQuality, ) -> Result<Vec<u8>, Box<dyn Error + Send + Sync + 'static>>

Retrieves content in bytes for the given media resource MediaQuality is an enum that specifies different image sizes

§Examples
use igdb_rs::client::IGDBClient;
use igdb_rs::media_quality::MediaQuality;
let client = IGDBClient::new("key");
let screenshot_client = client.screenshots();
screenshot_client.get_resource_by_id(12400, MediaQuality::ScreenshotHuge,);

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> ErasedDestructor for T
where T: 'static,