[][src]Trait async_graphql::ToGraphQLID

pub trait ToGraphQLID {
    fn to_graphql_id(&self) -> ID;
}

Convert any type that implements Display to the ID type

Required methods

fn to_graphql_id(&self) -> ID

Loading content...

Implementors

impl<T> ToGraphQLID for T where
    T: Display
[src]

Loading content...