[][src]Struct speedruns::api::types::Run

pub struct Run { /* fields omitted */ }

Methods

impl Run[src]

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

pub fn comment(&self) -> &Option<String>[src]

pub fn date(&self) -> &Option<NaiveDate>[src]

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

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

pub fn level(&self) -> &Option<String>[src]

pub fn players(&self) -> &Vec<RunPlayer>[src]

pub fn splits(&self) -> &Option<RunSplitsOrBuggyValue>[src]

pub fn status(&self) -> &RunStatus[src]

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

pub fn system(&self) -> &RunSystem[src]

pub fn times(&self) -> &RunTimes[src]

pub fn values(&self) -> &HashMap<String, String>[src]

pub fn videos(&self) -> &Option<RunVideos>[src]

Trait Implementations

impl Clone for Run[src]

impl Debug for Run[src]

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

impl Normalize for Run[src]

impl PartialEq<Run> for Run[src]

impl Serialize for Run[src]

impl StructuralPartialEq for Run[src]

Auto Trait Implementations

impl RefUnwindSafe for Run

impl Send for Run

impl Sync for Run

impl Unpin for Run

impl UnwindSafe for Run

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<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>,