pub struct SecretScanningLocationPullRequestReviewComment {
pub pull_request_review_comment_url: String,
}
Expand description
SecretScanningLocationPullRequestReviewComment : Represents a ‘pull_request_review_comment’ secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request.
Fields§
§pull_request_review_comment_url: String
The API URL to get the pull request review comment where the secret was detected.
Implementations§
Source§impl SecretScanningLocationPullRequestReviewComment
impl SecretScanningLocationPullRequestReviewComment
Sourcepub fn new(
pull_request_review_comment_url: String,
) -> SecretScanningLocationPullRequestReviewComment
pub fn new( pull_request_review_comment_url: String, ) -> SecretScanningLocationPullRequestReviewComment
Represents a ‘pull_request_review_comment’ secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request.
Trait Implementations§
Source§impl Clone for SecretScanningLocationPullRequestReviewComment
impl Clone for SecretScanningLocationPullRequestReviewComment
Source§fn clone(&self) -> SecretScanningLocationPullRequestReviewComment
fn clone(&self) -> SecretScanningLocationPullRequestReviewComment
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 Default for SecretScanningLocationPullRequestReviewComment
impl Default for SecretScanningLocationPullRequestReviewComment
Source§fn default() -> SecretScanningLocationPullRequestReviewComment
fn default() -> SecretScanningLocationPullRequestReviewComment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretScanningLocationPullRequestReviewComment
impl<'de> Deserialize<'de> for SecretScanningLocationPullRequestReviewComment
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 SecretScanningLocationPullRequestReviewComment
impl PartialEq for SecretScanningLocationPullRequestReviewComment
Source§fn eq(&self, other: &SecretScanningLocationPullRequestReviewComment) -> bool
fn eq(&self, other: &SecretScanningLocationPullRequestReviewComment) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SecretScanningLocationPullRequestReviewComment
Auto Trait Implementations§
impl Freeze for SecretScanningLocationPullRequestReviewComment
impl RefUnwindSafe for SecretScanningLocationPullRequestReviewComment
impl Send for SecretScanningLocationPullRequestReviewComment
impl Sync for SecretScanningLocationPullRequestReviewComment
impl Unpin for SecretScanningLocationPullRequestReviewComment
impl UnwindSafe for SecretScanningLocationPullRequestReviewComment
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