[][src]Enum igdb_rs::media_quality::MediaQuality

pub enum MediaQuality {
    CoverSmall,
    CoverMedium,
    CoverBig,
    LogoMed,
    Original,
    ScreenshotMedium,
    ScreenshotBig,
    ScreenshotHuge,
    Thumb,
    Micro,
    HD,
    FullHD,
}

Variants

CoverSmallCoverMediumCoverBigLogoMedOriginalScreenshotMediumScreenshotBigScreenshotHugeThumbMicroHDFullHD

Methods

impl MediaQuality[src]

Represents the quality of the resource

pub fn get_value(&self) -> &str[src]

Returns the MediaQuality String representation to download resources from internet

Examples

use igdb_rs::media_quality::MediaQuality;
assert_eq!(MediaQuality::ScreenshotHuge.get_value(), "screenshot_huge");
assert_eq!(MediaQuality::FullHD.get_value(), "1080p");

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> 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.

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

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

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