[][src]Trait speedruns::data::graphql::LeaderboardRunFields

pub trait LeaderboardRunFields {
    fn field_run<'a>(
        &self,
        executor: &Executor<'a, Context>,
        trail: &QueryTrail<'a, Run, Walked>
    ) -> Run;
fn field_rank<'a>(&self, executor: &Executor<'a, Context>) -> i32;
fn field_is_tied<'a>(&self, executor: &Executor<'a, Context>) -> bool;
fn field_tied_rank<'a>(&self, executor: &Executor<'a, Context>) -> i32; }

Trait for GraphQL field methods generated by juniper-from-schema.

Required methods

fn field_run<'a>(
    &self,
    executor: &Executor<'a, Context>,
    trail: &QueryTrail<'a, Run, Walked>
) -> Run

Field method generated by juniper-from-schema.

fn field_rank<'a>(&self, executor: &Executor<'a, Context>) -> i32

Field method generated by juniper-from-schema.

fn field_is_tied<'a>(&self, executor: &Executor<'a, Context>) -> bool

Field method generated by juniper-from-schema.

fn field_tied_rank<'a>(&self, executor: &Executor<'a, Context>) -> i32

Field method generated by juniper-from-schema.

Loading content...

Implementors

impl LeaderboardRunFields for LeaderboardRun[src]

Loading content...