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