Query

Struct Query 

Source
pub struct Query;

Trait Implementations§

Source§

impl HasField<__typename> for Query

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<codeOfConduct> for Query

Source§

type Type = Option<CodeOfConduct>

The schema marker type of this field.
Source§

impl HasField<codesOfConduct> for Query

Source§

type Type = Option<Vec<Option<CodeOfConduct>>>

The schema marker type of this field.
Source§

impl HasField<enterprise> for Query

Source§

type Type = Option<Enterprise>

The schema marker type of this field.
Source§

impl HasField<enterpriseAdministratorInvitation> for Query

Source§

type Type = Option<EnterpriseAdministratorInvitation>

The schema marker type of this field.
Source§

impl HasField<enterpriseAdministratorInvitationByToken> for Query

Source§

type Type = Option<EnterpriseAdministratorInvitation>

The schema marker type of this field.
Source§

impl HasField<license> for Query

Source§

type Type = Option<License>

The schema marker type of this field.
Source§

impl HasField<licenses> for Query

Source§

type Type = Vec<Option<License>>

The schema marker type of this field.
Source§

impl HasField<marketplaceCategories> for Query

Source§

type Type = Vec<MarketplaceCategory>

The schema marker type of this field.
Source§

impl HasField<marketplaceCategory> for Query

Source§

type Type = Option<MarketplaceCategory>

The schema marker type of this field.
Source§

impl HasField<marketplaceListing> for Query

Source§

type Type = Option<MarketplaceListing>

The schema marker type of this field.
Source§

impl HasField<marketplaceListings> for Query

Source§

type Type = MarketplaceListingConnection

The schema marker type of this field.
Source§

impl HasField<meta> for Query

Source§

type Type = GitHubMetadata

The schema marker type of this field.
Source§

impl HasField<node> for Query

Source§

type Type = Option<Node>

The schema marker type of this field.
Source§

impl HasField<nodes> for Query

Source§

type Type = Vec<Option<Node>>

The schema marker type of this field.
Source§

impl HasField<organization> for Query

Source§

type Type = Option<Organization>

The schema marker type of this field.
Source§

impl HasField<rateLimit> for Query

Source§

type Type = Option<RateLimit>

The schema marker type of this field.
Source§

impl HasField<relay> for Query

Source§

type Type = Query

The schema marker type of this field.
Source§

impl HasField<repository> for Query

Source§

type Type = Option<Repository>

The schema marker type of this field.
Source§

impl HasField<repositoryOwner> for Query

Source§

type Type = Option<RepositoryOwner>

The schema marker type of this field.
Source§

impl HasField<resource> for Query

Source§

type Type = Option<UniformResourceLocatable>

The schema marker type of this field.
Source§

impl HasField<search> for Query

Source§

type Type = SearchResultItemConnection

The schema marker type of this field.
Source§

impl HasField<securityAdvisories> for Query

Source§

type Type = SecurityAdvisoryConnection

The schema marker type of this field.
Source§

impl HasField<securityAdvisory> for Query

Source§

type Type = Option<SecurityAdvisory>

The schema marker type of this field.
Source§

impl HasField<securityVulnerabilities> for Query

Source§

type Type = SecurityVulnerabilityConnection

The schema marker type of this field.
Source§

impl HasField<sponsorables> for Query

Source§

type Type = SponsorableItemConnection

The schema marker type of this field.
Source§

impl HasField<topic> for Query

Source§

type Type = Option<Topic>

The schema marker type of this field.
Source§

impl HasField<user> for Query

Source§

type Type = Option<User>

The schema marker type of this field.
Source§

impl HasField<viewer> for Query

Source§

type Type = User

The schema marker type of this field.
Source§

impl NamedType for Query

Source§

const NAME: &'static str = "Query"

The name of this type
Source§

impl QueryRoot for Query

Auto Trait Implementations§

§

impl Freeze for Query

§

impl RefUnwindSafe for Query

§

impl Send for Query

§

impl Sync for Query

§

impl Unpin for Query

§

impl UnwindSafe for Query

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