pub struct ProjectV2Item {
pub id: String,
pub node_id: String,
pub content_type: String,
pub content_node_id: String,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Expand description
Item in a GitHub Projects v2 project.
Fields§
§id: StringUnique item identifier (project-specific)
node_id: StringNode ID for GraphQL API
content_type: StringContent type
content_node_id: StringContent node ID (issue or PR node ID)
created_at: DateTime<Utc>Creation timestamp
updated_at: DateTime<Utc>Last update timestamp
Trait Implementations§
Source§impl Clone for ProjectV2Item
impl Clone for ProjectV2Item
Source§fn clone(&self) -> ProjectV2Item
fn clone(&self) -> ProjectV2Item
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProjectV2Item
impl Debug for ProjectV2Item
Source§impl<'de> Deserialize<'de> for ProjectV2Item
impl<'de> Deserialize<'de> for ProjectV2Item
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 ProjectV2Item
impl RefUnwindSafe for ProjectV2Item
impl Send for ProjectV2Item
impl Sync for ProjectV2Item
impl Unpin for ProjectV2Item
impl UnsafeUnpin for ProjectV2Item
impl UnwindSafe for ProjectV2Item
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