Struct DiscussionComment

Source
pub struct DiscussionComment;

Trait Implementations§

Source§

impl HasField<__typename> for DiscussionComment

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<author> for DiscussionComment

Source§

type Type = Option<Actor>

The schema marker type of this field.
Source§

impl HasField<authorAssociation> for DiscussionComment

Source§

type Type = CommentAuthorAssociation

The schema marker type of this field.
Source§

impl HasField<body> for DiscussionComment

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<bodyHTML> for DiscussionComment

Source§

type Type = HTML

The schema marker type of this field.
Source§

impl HasField<bodyText> for DiscussionComment

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<createdAt> for DiscussionComment

Source§

type Type = DateTime

The schema marker type of this field.
Source§

impl HasField<createdViaEmail> for DiscussionComment

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<databaseId> for DiscussionComment

Source§

type Type = Option<i32>

The schema marker type of this field.
Source§

impl HasField<deletedAt> for DiscussionComment

Source§

type Type = Option<DateTime>

The schema marker type of this field.
Source§

impl HasField<discussion> for DiscussionComment

Source§

type Type = Option<Discussion>

The schema marker type of this field.
Source§

impl HasField<editor> for DiscussionComment

Source§

type Type = Option<Actor>

The schema marker type of this field.
Source§

impl HasField<id> for DiscussionComment

Source§

type Type = Id

The schema marker type of this field.
Source§

impl HasField<includesCreatedEdit> for DiscussionComment

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<isAnswer> for DiscussionComment

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<isMinimized> for DiscussionComment

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<lastEditedAt> for DiscussionComment

Source§

type Type = Option<DateTime>

The schema marker type of this field.
Source§

impl HasField<minimizedReason> for DiscussionComment

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<publishedAt> for DiscussionComment

Source§

type Type = Option<DateTime>

The schema marker type of this field.
Source§

impl HasField<reactionGroups> for DiscussionComment

Source§

type Type = Option<Vec<ReactionGroup>>

The schema marker type of this field.
Source§

impl HasField<reactions> for DiscussionComment

Source§

type Type = ReactionConnection

The schema marker type of this field.
Source§

impl HasField<replies> for DiscussionComment

Source§

type Type = DiscussionCommentConnection

The schema marker type of this field.
Source§

impl HasField<replyTo> for DiscussionComment

Source§

type Type = Option<DiscussionComment>

The schema marker type of this field.
Source§

impl HasField<resourcePath> for DiscussionComment

Source§

type Type = URI

The schema marker type of this field.
Source§

impl HasField<updatedAt> for DiscussionComment

Source§

type Type = DateTime

The schema marker type of this field.
Source§

impl HasField<upvoteCount> for DiscussionComment

Source§

type Type = i32

The schema marker type of this field.
Source§

impl HasField<url> for DiscussionComment

Source§

type Type = URI

The schema marker type of this field.
Source§

impl HasField<userContentEdits> for DiscussionComment

Source§

type Type = Option<UserContentEditConnection>

The schema marker type of this field.
Source§

impl HasField<viewerCanDelete> for DiscussionComment

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<viewerCanMarkAsAnswer> for DiscussionComment

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<viewerCanMinimize> for DiscussionComment

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<viewerCanReact> for DiscussionComment

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<viewerCanUnmarkAsAnswer> for DiscussionComment

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<viewerCanUpdate> for DiscussionComment

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<viewerCanUpvote> for DiscussionComment

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<viewerCannotUpdateReasons> for DiscussionComment

Source§

type Type = Vec<CommentCannotUpdateReason>

The schema marker type of this field.
Source§

impl HasField<viewerDidAuthor> for DiscussionComment

Source§

type Type = bool

The schema marker type of this field.
Source§

impl HasField<viewerHasUpvoted> for DiscussionComment

Source§

type Type = bool

The schema marker type of this field.
Source§

impl NamedType for DiscussionComment

Source§

const NAME: &'static str = "DiscussionComment"

The name of this type
Source§

impl HasSubtype<DiscussionComment> for Comment

Source§

impl HasSubtype<DiscussionComment> for Deletable

Source§

impl HasSubtype<DiscussionComment> for Minimizable

Source§

impl HasSubtype<DiscussionComment> for Node

Source§

impl HasSubtype<DiscussionComment> for Reactable

Source§

impl HasSubtype<DiscussionComment> for Updatable

Source§

impl HasSubtype<DiscussionComment> for UpdatableComment

Source§

impl HasSubtype<DiscussionComment> for Votable

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