pub struct ReactionCreateInput {
pub id: Option<String>,
pub emoji: Option<String>,
pub comment_id: Option<String>,
pub project_update_id: Option<String>,
pub initiative_update_id: Option<String>,
pub issue_id: Option<String>,
pub post_id: Option<String>,
pub pull_request_id: Option<String>,
pub pull_request_comment_id: Option<String>,
}Fields§
§id: Option<String>§emoji: Option<String>§comment_id: Option<String>§project_update_id: Option<String>§initiative_update_id: Option<String>§issue_id: Option<String>§post_id: Option<String>§pull_request_id: Option<String>§pull_request_comment_id: Option<String>Trait Implementations§
Source§impl Clone for ReactionCreateInput
impl Clone for ReactionCreateInput
Source§fn clone(&self) -> ReactionCreateInput
fn clone(&self) -> ReactionCreateInput
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 ReactionCreateInput
impl Debug for ReactionCreateInput
Source§impl Default for ReactionCreateInput
impl Default for ReactionCreateInput
Source§fn default() -> ReactionCreateInput
fn default() -> ReactionCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReactionCreateInput
impl<'de> Deserialize<'de> for ReactionCreateInput
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
Auto Trait Implementations§
impl Freeze for ReactionCreateInput
impl RefUnwindSafe for ReactionCreateInput
impl Send for ReactionCreateInput
impl Sync for ReactionCreateInput
impl Unpin for ReactionCreateInput
impl UnwindSafe for ReactionCreateInput
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