Struct gapi_grpc::google::devtools::cloudbuild::v1::PullRequestFilter[][src]

pub struct PullRequestFilter {
    pub comment_control: i32,
    pub invert_regex: bool,
    pub git_ref: Option<GitRef>,
}

PullRequestFilter contains filter properties for matching GitHub Pull Requests.

Fields

comment_control: i32

Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.

invert_regex: bool

If true, branches that do NOT match the git_ref will trigger a build.

git_ref: Option<GitRef>

Target refs to match. A target ref is the git reference where the pull request will be applied.

Implementations

impl PullRequestFilter[src]

pub fn comment_control(&self) -> CommentControl[src]

Returns the enum value of comment_control, or the default if the field is set to an invalid enum value.

pub fn set_comment_control(&mut self, value: CommentControl)[src]

Sets comment_control to the provided enum value.

Trait Implementations

impl Clone for PullRequestFilter[src]

impl Debug for PullRequestFilter[src]

impl Default for PullRequestFilter[src]

impl Message for PullRequestFilter[src]

impl PartialEq<PullRequestFilter> for PullRequestFilter[src]

impl StructuralPartialEq for PullRequestFilter[src]

Auto Trait Implementations

impl RefUnwindSafe for PullRequestFilter

impl Send for PullRequestFilter

impl Sync for PullRequestFilter

impl Unpin for PullRequestFilter

impl UnwindSafe for PullRequestFilter

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]