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