pub struct WebhooksProjectCard {Show 13 fields
pub after_id: Option<Option<i32>>,
pub archived: bool,
pub column_id: i32,
pub column_url: String,
pub content_url: Option<String>,
pub created_at: String,
pub creator: Option<Box<User>>,
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: i32
§column_url: String
§content_url: Option<String>
§created_at: String
§creator: Option<Box<User>>
§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 WebhooksProjectCard
impl Clone for WebhooksProjectCard
Source§fn clone(&self) -> WebhooksProjectCard
fn clone(&self) -> WebhooksProjectCard
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 WebhooksProjectCard
impl Debug for WebhooksProjectCard
Source§impl Default for WebhooksProjectCard
impl Default for WebhooksProjectCard
Source§fn default() -> WebhooksProjectCard
fn default() -> WebhooksProjectCard
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhooksProjectCard
impl<'de> Deserialize<'de> for WebhooksProjectCard
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 WebhooksProjectCard
impl PartialEq for WebhooksProjectCard
Source§impl Serialize for WebhooksProjectCard
impl Serialize for WebhooksProjectCard
impl StructuralPartialEq for WebhooksProjectCard
Auto Trait Implementations§
impl Freeze for WebhooksProjectCard
impl RefUnwindSafe for WebhooksProjectCard
impl Send for WebhooksProjectCard
impl Sync for WebhooksProjectCard
impl Unpin for WebhooksProjectCard
impl UnwindSafe for WebhooksProjectCard
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