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