pub struct WebhooksProject {Show 13 fields
pub body: Option<String>,
pub columns_url: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub creator: Option<User1>,
pub html_url: Option<String>,
pub id: Option<i64>,
pub name: Option<String>,
pub node_id: Option<String>,
pub number: Option<i64>,
pub owner_url: Option<String>,
pub state: Option<String>,
pub updated_at: Option<DateTime<Utc>>,
pub url: Option<String>,
}Fields§
§body: Option<String>Body of the project
columns_url: Option<String>§created_at: Option<DateTime<Utc>>§creator: Option<User1>§html_url: Option<String>§id: Option<i64>§name: Option<String>Name of the project
node_id: Option<String>§number: Option<i64>§owner_url: Option<String>§state: Option<String>State of the project; either ‘open’ or ‘closed’
updated_at: Option<DateTime<Utc>>§url: Option<String>Trait Implementations§
Source§impl Clone for WebhooksProject
impl Clone for WebhooksProject
Source§fn clone(&self) -> WebhooksProject
fn clone(&self) -> WebhooksProject
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 WebhooksProject
impl Debug for WebhooksProject
Source§impl Default for WebhooksProject
impl Default for WebhooksProject
Source§fn default() -> WebhooksProject
fn default() -> WebhooksProject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhooksProject
impl<'de> Deserialize<'de> for WebhooksProject
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 WebhooksProject
impl PartialEq for WebhooksProject
Source§impl Serialize for WebhooksProject
impl Serialize for WebhooksProject
impl StructuralPartialEq for WebhooksProject
Auto Trait Implementations§
impl Freeze for WebhooksProject
impl RefUnwindSafe for WebhooksProject
impl Send for WebhooksProject
impl Sync for WebhooksProject
impl Unpin for WebhooksProject
impl UnwindSafe for WebhooksProject
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