Comment

Struct Comment 

Source
pub struct Comment;

Trait Implementations§

Source§

impl HasField<__typename> for Comment

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<agentSession> for Comment

Source§

type Type = Option<AgentSession>

The schema marker type of this field.
Source§

impl HasField<agentSessions> for Comment

Source§

type Type = AgentSessionConnection

The schema marker type of this field.
Source§

impl HasField<archivedAt> for Comment

Source§

type Type = Option<DateTime>

The schema marker type of this field.
Source§

impl HasField<body> for Comment

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<bodyData> for Comment

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<botActor> for Comment

Source§

type Type = Option<ActorBot>

The schema marker type of this field.
Source§

impl HasField<children> for Comment

Source§

type Type = CommentConnection

The schema marker type of this field.
Source§

impl HasField<createdAt> for Comment

Source§

type Type = DateTime

The schema marker type of this field.
Source§

impl HasField<createdIssues> for Comment

Source§

type Type = IssueConnection

The schema marker type of this field.
Source§

impl HasField<documentContent> for Comment

Source§

type Type = Option<DocumentContent>

The schema marker type of this field.
Source§

impl HasField<documentContentId> for Comment

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<editedAt> for Comment

Source§

type Type = Option<DateTime>

The schema marker type of this field.
Source§

impl HasField<externalThread> for Comment

Source§

type Type = Option<SyncedExternalThread>

The schema marker type of this field.
Source§

impl HasField<externalUser> for Comment

Source§

type Type = Option<ExternalUser>

The schema marker type of this field.
Source§

impl HasField<id> for Comment

Source§

type Type = Id

The schema marker type of this field.
Source§

impl HasField<initiativeUpdate> for Comment

Source§

type Type = Option<InitiativeUpdate>

The schema marker type of this field.
Source§

impl HasField<initiativeUpdateId> for Comment

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<issue> for Comment

Source§

type Type = Option<Issue>

The schema marker type of this field.
Source§

impl HasField<issueId> for Comment

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<parent> for Comment

Source§

type Type = Option<Comment>

The schema marker type of this field.
Source§

impl HasField<parentId> for Comment

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<post> for Comment

Source§

type Type = Option<Post>

The schema marker type of this field.
Source§

impl HasField<projectUpdate> for Comment

Source§

type Type = Option<ProjectUpdate>

The schema marker type of this field.
Source§

impl HasField<projectUpdateId> for Comment

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<quotedText> for Comment

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<reactionData> for Comment

Source§

type Type = JSONObject

The schema marker type of this field.
Source§

impl HasField<reactions> for Comment

Source§

type Type = Vec<Reaction>

The schema marker type of this field.
Source§

impl HasField<resolvedAt> for Comment

Source§

type Type = Option<DateTime>

The schema marker type of this field.
Source§

impl HasField<resolvingComment> for Comment

Source§

type Type = Option<Comment>

The schema marker type of this field.
Source§

impl HasField<resolvingCommentId> for Comment

Source§

type Type = Option<String>

The schema marker type of this field.
Source§

impl HasField<resolvingUser> for Comment

Source§

type Type = Option<User>

The schema marker type of this field.
Source§

impl HasField<syncedWith> for Comment

Source§

type Type = Option<Vec<ExternalEntityInfo>>

The schema marker type of this field.
Source§

impl HasField<threadSummary> for Comment

Source§

type Type = Option<JSONObject>

The schema marker type of this field.
Source§

impl HasField<updatedAt> for Comment

Source§

type Type = DateTime

The schema marker type of this field.
Source§

impl HasField<url> for Comment

Source§

type Type = String

The schema marker type of this field.
Source§

impl HasField<user> for Comment

Source§

type Type = Option<User>

The schema marker type of this field.
Source§

impl NamedType for Comment

Source§

const NAME: &'static str = "Comment"

The name of this type
Source§

impl HasSubtype<Comment> for Node

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