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