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