pub struct GhPullRequestNode {
id: String,
number: i32,
title: String,
url: String,
state: String,
created_at: String,
base_repository: GhBaseRepository,
}
Expand description
Pull request node
Fields§
§id: String
Id
number: i32
Number
title: String
Title
url: String
Url
state: String
State
created_at: String
Created at
base_repository: GhBaseRepository
Base repository
Trait Implementations§
source§impl Debug for GhPullRequestNode
impl Debug for GhPullRequestNode
source§impl Default for GhPullRequestNode
impl Default for GhPullRequestNode
source§fn default() -> GhPullRequestNode
fn default() -> GhPullRequestNode
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GhPullRequestNode
impl<'de> Deserialize<'de> for GhPullRequestNode
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GhPullRequestNode
impl RefUnwindSafe for GhPullRequestNode
impl Send for GhPullRequestNode
impl Sync for GhPullRequestNode
impl Unpin for GhPullRequestNode
impl UnwindSafe for GhPullRequestNode
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more