pub struct ConvertedNoteToIssueIssueEvent {
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<Integration>>,
pub project_card: Option<Box<AddedToProjectIssueEventProjectCard>>,
}
Expand description
ConvertedNoteToIssueIssueEvent : Converted Note to Issue 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<Integration>>
§project_card: Option<Box<AddedToProjectIssueEventProjectCard>>
Implementations§
Source§impl ConvertedNoteToIssueIssueEvent
impl ConvertedNoteToIssueIssueEvent
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<Integration>,
) -> ConvertedNoteToIssueIssueEvent
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<Integration>, ) -> ConvertedNoteToIssueIssueEvent
Converted Note to Issue Issue Event
Trait Implementations§
Source§impl Clone for ConvertedNoteToIssueIssueEvent
impl Clone for ConvertedNoteToIssueIssueEvent
Source§fn clone(&self) -> ConvertedNoteToIssueIssueEvent
fn clone(&self) -> ConvertedNoteToIssueIssueEvent
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 Default for ConvertedNoteToIssueIssueEvent
impl Default for ConvertedNoteToIssueIssueEvent
Source§fn default() -> ConvertedNoteToIssueIssueEvent
fn default() -> ConvertedNoteToIssueIssueEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConvertedNoteToIssueIssueEvent
impl<'de> Deserialize<'de> for ConvertedNoteToIssueIssueEvent
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 ConvertedNoteToIssueIssueEvent
impl PartialEq for ConvertedNoteToIssueIssueEvent
Source§fn eq(&self, other: &ConvertedNoteToIssueIssueEvent) -> bool
fn eq(&self, other: &ConvertedNoteToIssueIssueEvent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ConvertedNoteToIssueIssueEvent
Auto Trait Implementations§
impl Freeze for ConvertedNoteToIssueIssueEvent
impl RefUnwindSafe for ConvertedNoteToIssueIssueEvent
impl Send for ConvertedNoteToIssueIssueEvent
impl Sync for ConvertedNoteToIssueIssueEvent
impl Unpin for ConvertedNoteToIssueIssueEvent
impl UnwindSafe for ConvertedNoteToIssueIssueEvent
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