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