pub struct ProjectCard {Show 13 fields
pub after_id: Option<Option<i32>>,
pub archived: bool,
pub column_id: Option<i32>,
pub column_url: String,
pub content_url: Option<String>,
pub created_at: String,
pub creator: Option<Box<User1>>,
pub id: i32,
pub node_id: String,
pub note: Option<String>,
pub project_url: String,
pub updated_at: String,
pub url: String,
}
Fields§
§after_id: Option<Option<i32>>
§archived: bool
Whether or not the card is archived
column_id: Option<i32>
§column_url: String
§content_url: Option<String>
§created_at: String
§creator: Option<Box<User1>>
§id: i32
The project card’s ID
node_id: String
§note: Option<String>
§project_url: String
§updated_at: String
§url: String
Implementations§
Trait Implementations§
Source§impl Clone for ProjectCard
impl Clone for ProjectCard
Source§fn clone(&self) -> ProjectCard
fn clone(&self) -> ProjectCard
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 ProjectCard
impl Debug for ProjectCard
Source§impl Default for ProjectCard
impl Default for ProjectCard
Source§fn default() -> ProjectCard
fn default() -> ProjectCard
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectCard
impl<'de> Deserialize<'de> for ProjectCard
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
Source§impl PartialEq for ProjectCard
impl PartialEq for ProjectCard
Source§impl Serialize for ProjectCard
impl Serialize for ProjectCard
impl StructuralPartialEq for ProjectCard
Auto Trait Implementations§
impl Freeze for ProjectCard
impl RefUnwindSafe for ProjectCard
impl Send for ProjectCard
impl Sync for ProjectCard
impl Unpin for ProjectCard
impl UnwindSafe for ProjectCard
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