pub enum SecretScanningLocationDetails {
Show 13 variants
SecretScanningLocationCommit(Box<SecretScanningLocationCommit>),
SecretScanningLocationWikiCommit(Box<SecretScanningLocationWikiCommit>),
SecretScanningLocationIssueTitle(Box<SecretScanningLocationIssueTitle>),
SecretScanningLocationIssueBody(Box<SecretScanningLocationIssueBody>),
SecretScanningLocationIssueComment(Box<SecretScanningLocationIssueComment>),
SecretScanningLocationDiscussionTitle(Box<SecretScanningLocationDiscussionTitle>),
SecretScanningLocationDiscussionBody(Box<SecretScanningLocationDiscussionBody>),
SecretScanningLocationDiscussionComment(Box<SecretScanningLocationDiscussionComment>),
SecretScanningLocationPullRequestTitle(Box<SecretScanningLocationPullRequestTitle>),
SecretScanningLocationPullRequestBody(Box<SecretScanningLocationPullRequestBody>),
SecretScanningLocationPullRequestComment(Box<SecretScanningLocationPullRequestComment>),
SecretScanningLocationPullRequestReview(Box<SecretScanningLocationPullRequestReview>),
SecretScanningLocationPullRequestReviewComment(Box<SecretScanningLocationPullRequestReviewComment>),
}Variants§
SecretScanningLocationCommit(Box<SecretScanningLocationCommit>)
SecretScanningLocationWikiCommit(Box<SecretScanningLocationWikiCommit>)
SecretScanningLocationIssueTitle(Box<SecretScanningLocationIssueTitle>)
SecretScanningLocationIssueBody(Box<SecretScanningLocationIssueBody>)
SecretScanningLocationIssueComment(Box<SecretScanningLocationIssueComment>)
SecretScanningLocationDiscussionTitle(Box<SecretScanningLocationDiscussionTitle>)
SecretScanningLocationDiscussionBody(Box<SecretScanningLocationDiscussionBody>)
SecretScanningLocationDiscussionComment(Box<SecretScanningLocationDiscussionComment>)
SecretScanningLocationPullRequestTitle(Box<SecretScanningLocationPullRequestTitle>)
SecretScanningLocationPullRequestBody(Box<SecretScanningLocationPullRequestBody>)
SecretScanningLocationPullRequestComment(Box<SecretScanningLocationPullRequestComment>)
SecretScanningLocationPullRequestReview(Box<SecretScanningLocationPullRequestReview>)
SecretScanningLocationPullRequestReviewComment(Box<SecretScanningLocationPullRequestReviewComment>)
Trait Implementations§
Source§impl Clone for SecretScanningLocationDetails
impl Clone for SecretScanningLocationDetails
Source§fn clone(&self) -> SecretScanningLocationDetails
fn clone(&self) -> SecretScanningLocationDetails
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<'de> Deserialize<'de> for SecretScanningLocationDetails
impl<'de> Deserialize<'de> for SecretScanningLocationDetails
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 SecretScanningLocationDetails
impl PartialEq for SecretScanningLocationDetails
Source§fn eq(&self, other: &SecretScanningLocationDetails) -> bool
fn eq(&self, other: &SecretScanningLocationDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SecretScanningLocationDetails
Auto Trait Implementations§
impl Freeze for SecretScanningLocationDetails
impl RefUnwindSafe for SecretScanningLocationDetails
impl Send for SecretScanningLocationDetails
impl Sync for SecretScanningLocationDetails
impl Unpin for SecretScanningLocationDetails
impl UnwindSafe for SecretScanningLocationDetails
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