Struct github_webhook::payload_types::ProjectsV2Item
source · pub struct ProjectsV2Item<'a> {
pub id: usize,
pub node_id: &'a str,
pub project_node_id: &'a str,
pub content_node_id: &'a str,
pub content_type: ProjectsV2ItemContentType,
pub creator: User<'a>,
pub created_at: &'a str,
pub updated_at: &'a str,
pub archived_at: Option<&'a str>,
}
Expand description
The project item itself. To find more information about the project item, you can use node_id
(the node ID of the project item) and project_node_id
(the node ID of the project) to query information in the GraphQL API. For more information, see “Using the API to manage projects.”
Fields§
§id: usize
§node_id: &'a str
§project_node_id: &'a str
§content_node_id: &'a str
§content_type: ProjectsV2ItemContentType
§creator: User<'a>
§created_at: &'a str
§updated_at: &'a str
§archived_at: Option<&'a str>
Trait Implementations§
source§impl<'a> Debug for ProjectsV2Item<'a>
impl<'a> Debug for ProjectsV2Item<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for ProjectsV2Item<'a>
impl<'de: 'a, 'a> Deserialize<'de> for ProjectsV2Item<'a>
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<'a> RefUnwindSafe for ProjectsV2Item<'a>
impl<'a> Send for ProjectsV2Item<'a>
impl<'a> Sync for ProjectsV2Item<'a>
impl<'a> Unpin for ProjectsV2Item<'a>
impl<'a> UnwindSafe for ProjectsV2Item<'a>
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