[][src]Struct thoth::models::contributor::Contributor

pub struct Contributor {
    pub contributor_id: Uuid,
    pub first_name: Option<String>,
    pub last_name: String,
    pub full_name: String,
    pub orcid: Option<String>,
    pub website: Option<String>,
}

Fields

contributor_id: Uuidfirst_name: Option<String>last_name: Stringfull_name: Stringorcid: Option<String>website: Option<String>

Trait Implementations

impl GraphQLType<DefaultScalarValue> for Contributor[src]

type Context = Context

The expected context type for this GraphQL type Read more

type TypeInfo = ()

Type that may carry additional schema information Read more

impl<__DB: Backend, __ST> Queryable<__ST, __DB> for Contributor where
    (Uuid, Option<String>, String, String, Option<String>, Option<String>): Queryable<__ST, __DB>, 
[src]

type Row = <(Uuid, Option<String>, String, String, Option<String>, Option<String>) as Queryable<__ST, __DB>>::Row

The Rust type you'd like to map from. Read more

Auto Trait Implementations

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

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

impl<T> IntoSql 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<V, T> VZip<V> for T where
    V: MultiLane<T>,