pub struct RemovedFromProjectIssueEvent {
pub id: i32,
pub node_id: String,
pub url: String,
pub actor: Box<SimpleUser>,
pub event: String,
pub commit_id: Option<String>,
pub commit_url: Option<String>,
pub created_at: String,
pub performed_via_github_app: Option<Box<NullableIntegration>>,
pub project_card: Option<Box<AddedToProjectIssueEventProjectCard>>,
}
Expand description
RemovedFromProjectIssueEvent : Removed from Project Issue Event
Fields§
§id: i32
§node_id: String
§url: String
§actor: Box<SimpleUser>
§event: String
§commit_id: Option<String>
§commit_url: Option<String>
§created_at: String
§performed_via_github_app: Option<Box<NullableIntegration>>
§project_card: Option<Box<AddedToProjectIssueEventProjectCard>>
Implementations§
Source§impl RemovedFromProjectIssueEvent
impl RemovedFromProjectIssueEvent
Sourcepub fn new(
id: i32,
node_id: String,
url: String,
actor: SimpleUser,
event: String,
commit_id: Option<String>,
commit_url: Option<String>,
created_at: String,
performed_via_github_app: Option<NullableIntegration>,
) -> RemovedFromProjectIssueEvent
pub fn new( id: i32, node_id: String, url: String, actor: SimpleUser, event: String, commit_id: Option<String>, commit_url: Option<String>, created_at: String, performed_via_github_app: Option<NullableIntegration>, ) -> RemovedFromProjectIssueEvent
Removed from Project Issue Event
Trait Implementations§
Source§impl Clone for RemovedFromProjectIssueEvent
impl Clone for RemovedFromProjectIssueEvent
Source§fn clone(&self) -> RemovedFromProjectIssueEvent
fn clone(&self) -> RemovedFromProjectIssueEvent
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 RemovedFromProjectIssueEvent
impl Debug for RemovedFromProjectIssueEvent
Source§impl Default for RemovedFromProjectIssueEvent
impl Default for RemovedFromProjectIssueEvent
Source§fn default() -> RemovedFromProjectIssueEvent
fn default() -> RemovedFromProjectIssueEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemovedFromProjectIssueEvent
impl<'de> Deserialize<'de> for RemovedFromProjectIssueEvent
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 RemovedFromProjectIssueEvent
impl PartialEq for RemovedFromProjectIssueEvent
Source§fn eq(&self, other: &RemovedFromProjectIssueEvent) -> bool
fn eq(&self, other: &RemovedFromProjectIssueEvent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RemovedFromProjectIssueEvent
Auto Trait Implementations§
impl Freeze for RemovedFromProjectIssueEvent
impl RefUnwindSafe for RemovedFromProjectIssueEvent
impl Send for RemovedFromProjectIssueEvent
impl Sync for RemovedFromProjectIssueEvent
impl Unpin for RemovedFromProjectIssueEvent
impl UnwindSafe for RemovedFromProjectIssueEvent
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