Struct github_rest::model::repositories::ProjectCard
source · pub struct ProjectCard {
pub id: usize,
pub node_id: String,
pub note: Option<String>,
pub url: String,
pub column_url: String,
pub project_url: String,
pub creator: Option<SimpleUser>,
pub created_at: String,
pub updated_at: String,
}
Expand description
Fields§
§id: usize
§node_id: String
§note: Option<String>
§url: String
§column_url: String
§project_url: String
§creator: Option<SimpleUser>
§created_at: String
§updated_at: String
Trait Implementations§
source§impl Clone for ProjectCard
impl Clone for ProjectCard
source§fn clone(&self) -> ProjectCard
fn clone(&self) -> ProjectCard
Returns a copy 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<'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<ProjectCard> for ProjectCard
impl PartialEq<ProjectCard> for ProjectCard
source§fn eq(&self, other: &ProjectCard) -> bool
fn eq(&self, other: &ProjectCard) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ProjectCard
impl Serialize for ProjectCard
impl StructuralPartialEq for ProjectCard
Auto Trait Implementations§
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