pub struct PullRequestReviewComment {
pub types: Vec<PullRequestReviewCommentType>,
}
Expand description
Configuration for pull request review comment events
Fields§
§types: Vec<PullRequestReviewCommentType>
Filter on specific pull request review comment event types
Implementations§
Source§impl PullRequestReviewComment
impl PullRequestReviewComment
Sourcepub fn add_type(self, type_: PullRequestReviewCommentType) -> Self
pub fn add_type(self, type_: PullRequestReviewCommentType) -> Self
Adds a pull request review comment event type to filter on
Trait Implementations§
Source§impl Clone for PullRequestReviewComment
impl Clone for PullRequestReviewComment
Source§fn clone(&self) -> PullRequestReviewComment
fn clone(&self) -> PullRequestReviewComment
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 PullRequestReviewComment
impl Debug for PullRequestReviewComment
Source§impl Default for PullRequestReviewComment
impl Default for PullRequestReviewComment
Source§fn default() -> PullRequestReviewComment
fn default() -> PullRequestReviewComment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PullRequestReviewComment
impl<'de> Deserialize<'de> for PullRequestReviewComment
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 PullRequestReviewComment
impl PartialEq for PullRequestReviewComment
Source§impl Serialize for PullRequestReviewComment
impl Serialize for PullRequestReviewComment
impl Eq for PullRequestReviewComment
impl StructuralPartialEq for PullRequestReviewComment
Auto Trait Implementations§
impl Freeze for PullRequestReviewComment
impl RefUnwindSafe for PullRequestReviewComment
impl Send for PullRequestReviewComment
impl Sync for PullRequestReviewComment
impl Unpin for PullRequestReviewComment
impl UnwindSafe for PullRequestReviewComment
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.