#[non_exhaustive]pub struct PullRequestMergedStateChangedEventMetadata {
pub repository_name: Option<String>,
pub destination_reference: Option<String>,
pub merge_metadata: Option<MergeMetadata>,
}Expand description
Returns information about the change in the merge state for a pull request event.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.repository_name: Option<String>The name of the repository where the pull request was created.
destination_reference: Option<String>The name of the branch that the pull request is merged into.
merge_metadata: Option<MergeMetadata>Information about the merge state change event.
Implementations§
source§impl PullRequestMergedStateChangedEventMetadata
impl PullRequestMergedStateChangedEventMetadata
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The name of the repository where the pull request was created.
sourcepub fn destination_reference(&self) -> Option<&str>
pub fn destination_reference(&self) -> Option<&str>
The name of the branch that the pull request is merged into.
sourcepub fn merge_metadata(&self) -> Option<&MergeMetadata>
pub fn merge_metadata(&self) -> Option<&MergeMetadata>
Information about the merge state change event.
source§impl PullRequestMergedStateChangedEventMetadata
impl PullRequestMergedStateChangedEventMetadata
sourcepub fn builder() -> PullRequestMergedStateChangedEventMetadataBuilder
pub fn builder() -> PullRequestMergedStateChangedEventMetadataBuilder
Creates a new builder-style object to manufacture PullRequestMergedStateChangedEventMetadata.
Trait Implementations§
source§impl Clone for PullRequestMergedStateChangedEventMetadata
impl Clone for PullRequestMergedStateChangedEventMetadata
source§fn clone(&self) -> PullRequestMergedStateChangedEventMetadata
fn clone(&self) -> PullRequestMergedStateChangedEventMetadata
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 PartialEq for PullRequestMergedStateChangedEventMetadata
impl PartialEq for PullRequestMergedStateChangedEventMetadata
source§fn eq(&self, other: &PullRequestMergedStateChangedEventMetadata) -> bool
fn eq(&self, other: &PullRequestMergedStateChangedEventMetadata) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PullRequestMergedStateChangedEventMetadata
Auto Trait Implementations§
impl RefUnwindSafe for PullRequestMergedStateChangedEventMetadata
impl Send for PullRequestMergedStateChangedEventMetadata
impl Sync for PullRequestMergedStateChangedEventMetadata
impl Unpin for PullRequestMergedStateChangedEventMetadata
impl UnwindSafe for PullRequestMergedStateChangedEventMetadata
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.