User

Struct User 

Source
pub struct User;

Trait Implementations§

Source§

impl HasField<__typename> for User

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<active> for User

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<admin> for User

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<app> for User

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<archivedAt> for User

Source§

type Type = Option<DateTime>

The schema marker type of this field.
Source§

impl HasField<assignedIssues> for User

Source§

type Type = IssueConnection

The schema marker type of this field.
Source§

impl HasField<avatarBackgroundColor> for User

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<avatarUrl> for User

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<calendarHash> for User

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<canAccessAnyPublicTeam> for User

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<createdAt> for User

Source§

type Type = DateTime

The schema marker type of this field.
Source§

impl HasField<createdIssueCount> for User

Source§

type Type = i32

The schema marker type of this field.
Source§

impl HasField<createdIssues> for User

Source§

type Type = IssueConnection

The schema marker type of this field.
Source§

impl HasField<delegatedIssues> for User

Source§

type Type = IssueConnection

The schema marker type of this field.
Source§

impl HasField<description> for User

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<disableReason> for User

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<displayName> for User

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<drafts> for User

Source§

type Type = DraftConnection

The schema marker type of this field.
Source§

impl HasField<email> for User

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<feedFacets> for User

Source§

type Type = FacetConnection

The schema marker type of this field.
Source§

impl HasField<gitHubUserId> for User

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<guest> for User

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<id> for User

Source§

type Type = Id

The schema marker type of this field.
Source§

impl HasField<identityProvider> for User

Source§

type Type = Option<IdentityProvider>

The schema marker type of this field.
Source§

impl HasField<initials> for User

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<inviteHash> for User

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<isAssignable> for User

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<isMe> for User

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<isMentionable> for User

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<issueDrafts> for User

Source§

type Type = IssueDraftConnection

The schema marker type of this field.
Source§

impl HasField<lastSeen> for User

Source§

type Type = Option<DateTime>

The schema marker type of this field.
Source§

impl HasField<name> for User

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<organization> for User

Source§

type Type = Organization

The schema marker type of this field.
Source§

impl HasField<owner> for User

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<statusEmoji> for User

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<statusLabel> for User

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<statusUntilAt> for User

Source§

type Type = Option<DateTime>

The schema marker type of this field.
Source§

impl HasField<supportsAgentSessions> for User

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<teamMemberships> for User

Source§

type Type = TeamMembershipConnection

The schema marker type of this field.
Source§

impl HasField<teams> for User

Source§

type Type = TeamConnection

The schema marker type of this field.
Source§

impl HasField<timezone> for User

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<updatedAt> for User

Source§

type Type = DateTime

The schema marker type of this field.
Source§

impl HasField<url> for User

Source§

type Type = String

The schema marker type of this field.
Source§

impl NamedType for User

Source§

const NAME: &'static str = "User"

The name of this type
Source§

impl HasSubtype<User> for Node

Auto Trait Implementations§

§

impl Freeze for User

§

impl RefUnwindSafe for User

§

impl Send for User

§

impl Sync for User

§

impl Unpin for User

§

impl UnwindSafe for User

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> IsFieldType<T> for T