[][src]Struct speedruns::data::types::Game

pub struct Game {
    pub id: u64,
    pub created: Option<DateTime<Utc>>,
    pub slug: String,
    pub src_slug: String,
    pub name: String,
    pub primary_timing: TimingMethod,
}

Fields

id: u64created: Option<DateTime<Utc>>slug: Stringsrc_slug: Stringname: Stringprimary_timing: TimingMethod

Methods

impl Game[src]

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

pub fn created(&self) -> &Option<DateTime<Utc>>[src]

pub fn slug(&self) -> &String[src]

pub fn src_slug(&self) -> &String[src]

pub fn name(&self) -> &String[src]

pub fn primary_timing(&self) -> &TimingMethod[src]

impl Game[src]

pub fn src_id(&self) -> String[src]

This item's ID as it would be formatted for SpeedRun.Com.

Trait Implementations

impl Clone for Game[src]

impl Debug for Game[src]

impl<'de> Deserialize<'de> for Game[src]

impl Eq for Game[src]

impl From<Game> for AnyModel[src]

impl Hash for Game[src]

impl Model for Game[src]

impl Ord for Game[src]

impl PartialEq<Game> for Game[src]

impl PartialOrd<Game> for Game[src]

impl Serialize for Game[src]

impl StructuralEq for Game[src]

impl StructuralPartialEq for Game[src]

impl TryFrom<AnyModel> for Game[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl Validate for Game[src]

Auto Trait Implementations

impl RefUnwindSafe for Game

impl Send for Game

impl Sync for Game

impl Unpin for Game

impl UnwindSafe for Game

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,