Struct github_webhook::payload_types::ProjectCard
source · pub struct ProjectCard<'a> {Show 13 fields
pub url: &'a str,
pub project_url: &'a str,
pub column_url: &'a str,
pub column_id: usize,
pub id: usize,
pub node_id: &'a str,
pub note: Option<&'a str>,
pub archived: bool,
pub creator: User<'a>,
pub created_at: &'a str,
pub updated_at: &'a str,
pub content_url: Option<&'a str>,
pub after_id: Option<ProjectCardAfterIdUnion<'a>>,
}
Fields§
§url: &'a str
§project_url: &'a str
§column_url: &'a str
§column_id: usize
§id: usize
The project card’s ID
node_id: &'a str
§note: Option<&'a str>
§archived: bool
Whether or not the card is archived
creator: User<'a>
§created_at: &'a str
§updated_at: &'a str
§content_url: Option<&'a str>
§after_id: Option<ProjectCardAfterIdUnion<'a>>
Trait Implementations§
source§impl<'a> Debug for ProjectCard<'a>
impl<'a> Debug for ProjectCard<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for ProjectCard<'a>
impl<'de: 'a, 'a> Deserialize<'de> for ProjectCard<'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 ProjectCard<'a>
impl<'a> Send for ProjectCard<'a>
impl<'a> Sync for ProjectCard<'a>
impl<'a> Unpin for ProjectCard<'a>
impl<'a> UnwindSafe for ProjectCard<'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