Struct RepositoryInfo

Source
pub struct RepositoryInfo;

Trait Implementations§

Source§

impl HasField<__typename> for RepositoryInfo

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<archivedAt> for RepositoryInfo

Source§

type Type = Option<DateTime>

The schema marker type of this field.
Source§

impl HasField<createdAt> for RepositoryInfo

Source§

type Type = DateTime

The schema marker type of this field.
Source§

impl HasField<description> for RepositoryInfo

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<descriptionHTML> for RepositoryInfo

Source§

type Type = HTML

The schema marker type of this field.
Source§

impl HasField<forkCount> for RepositoryInfo

Source§

type Type = i32

The schema marker type of this field.
Source§

impl HasField<hasDiscussionsEnabled> for RepositoryInfo

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<hasIssuesEnabled> for RepositoryInfo

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<hasProjectsEnabled> for RepositoryInfo

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<hasWikiEnabled> for RepositoryInfo

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<homepageUrl> for RepositoryInfo

Source§

type Type = Option<URI>

The schema marker type of this field.
Source§

impl HasField<isArchived> for RepositoryInfo

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<isFork> for RepositoryInfo

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<isInOrganization> for RepositoryInfo

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<isLocked> for RepositoryInfo

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<isMirror> for RepositoryInfo

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<isPrivate> for RepositoryInfo

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<isTemplate> for RepositoryInfo

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<licenseInfo> for RepositoryInfo

Source§

type Type = Option<License>

The schema marker type of this field.
Source§

impl HasField<lockReason> for RepositoryInfo

Source§

type Type = Option<RepositoryLockReason>

The schema marker type of this field.
Source§

impl HasField<mirrorUrl> for RepositoryInfo

Source§

type Type = Option<URI>

The schema marker type of this field.
Source§

impl HasField<name> for RepositoryInfo

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<nameWithOwner> for RepositoryInfo

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<openGraphImageUrl> for RepositoryInfo

Source§

type Type = URI

The schema marker type of this field.
Source§

impl HasField<owner> for RepositoryInfo

Source§

type Type = RepositoryOwner

The schema marker type of this field.
Source§

impl HasField<pushedAt> for RepositoryInfo

Source§

type Type = Option<DateTime>

The schema marker type of this field.
Source§

impl HasField<resourcePath> for RepositoryInfo

Source§

type Type = URI

The schema marker type of this field.
Source§

impl HasField<shortDescriptionHTML> for RepositoryInfo

Source§

type Type = HTML

The schema marker type of this field.
Source§

impl HasField<updatedAt> for RepositoryInfo

Source§

type Type = DateTime

The schema marker type of this field.
Source§

impl HasField<url> for RepositoryInfo

Source§

type Type = URI

The schema marker type of this field.
Source§

impl HasField<usesCustomOpenGraphImage> for RepositoryInfo

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<visibility> for RepositoryInfo

Source§

type Type = RepositoryVisibility

The schema marker type of this field.
Source§

impl NamedType for RepositoryInfo

Source§

const NAME: &'static str = "RepositoryInfo"

The name of this type
Source§

impl HasSubtype<Repository> for RepositoryInfo

Source§

impl HasSubtype<RepositoryInfo> for RepositoryInfo

Auto Trait Implementations§

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