[][src]Struct discord_game_sdk::Entitlement

pub struct Entitlement(_);

Proof that user has made a purchase

This must then be consumed by your game's backend

https://discordapp.com/developers/docs/game-sdk/store#data-models-entitlement-struct

Methods

impl Entitlement[src]

pub fn id(&self) -> i64[src]

The unique ID of the entitlement

pub fn kind(&self) -> EntitlementKind[src]

The kind of entitlement it is

pub fn sku_id(&self) -> i64[src]

The ID of the SKU to which the user is entitled

Trait Implementations

impl Copy for Entitlement[src]

impl Clone for Entitlement[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Entitlement> for Entitlement[src]

impl From<DiscordEntitlement> for Entitlement[src]

impl From<Entitlement> for DiscordEntitlement[src]

impl Eq for Entitlement[src]

impl Debug for Entitlement[src]

impl Hash for Entitlement[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for 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]