pub struct IssueComment {
pub types: Vec<IssueCommentType>,
}
Expand description
Configuration for issue comment events See: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#issue_comment
Fields§
§types: Vec<IssueCommentType>
Filter on specific issue comment event types
Implementations§
Source§impl IssueComment
impl IssueComment
Sourcepub fn types(self, value: Vec<IssueCommentType>) -> Self
pub fn types(self, value: Vec<IssueCommentType>) -> Self
Sets the types
field of this struct.
Source§impl IssueComment
impl IssueComment
Sourcepub fn add_type(self, type_: IssueCommentType) -> Self
pub fn add_type(self, type_: IssueCommentType) -> Self
Adds an issue comment event type to filter on
Trait Implementations§
Source§impl Clone for IssueComment
impl Clone for IssueComment
Source§fn clone(&self) -> IssueComment
fn clone(&self) -> IssueComment
Returns a copy 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 IssueComment
impl Debug for IssueComment
Source§impl Default for IssueComment
impl Default for IssueComment
Source§fn default() -> IssueComment
fn default() -> IssueComment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueComment
impl<'de> Deserialize<'de> for IssueComment
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 IssueComment
impl PartialEq for IssueComment
Source§impl Serialize for IssueComment
impl Serialize for IssueComment
impl Eq for IssueComment
impl StructuralPartialEq for IssueComment
Auto Trait Implementations§
impl Freeze for IssueComment
impl RefUnwindSafe for IssueComment
impl Send for IssueComment
impl Sync for IssueComment
impl Unpin for IssueComment
impl UnwindSafe for IssueComment
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.