pub struct GetDetectedSecretsSecretIdLocationsResponseMeta {
pub activity_feed: Option<Vec<GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem>>,
pub cursor: Option<String>,
pub limit: Option<f64>,
pub next_cursor: Option<Value>,
pub obfuscated_secret: Option<String>,
pub secret_hash: Option<String>,
pub secret_type: Option<String>,
pub total: Option<f64>,
}
Fields§
§activity_feed: Option<Vec<GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem>>
The history of the secret’s resolution status changes.
cursor: Option<String>
The pointer to the first record of the set of paginated results.
limit: Option<f64>
The maximum number of rows to return in the response.
next_cursor: Option<Value>
§obfuscated_secret: Option<String>
The secret’s obfuscated value.
secret_hash: Option<String>
The secret’s SHA-256 hash.
secret_type: Option<String>
The type of thesecret.
total: Option<f64>
The total number of discovered secret locations.
Trait Implementations§
Source§impl Clone for GetDetectedSecretsSecretIdLocationsResponseMeta
impl Clone for GetDetectedSecretsSecretIdLocationsResponseMeta
Source§fn clone(&self) -> GetDetectedSecretsSecretIdLocationsResponseMeta
fn clone(&self) -> GetDetectedSecretsSecretIdLocationsResponseMeta
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<'de> Deserialize<'de> for GetDetectedSecretsSecretIdLocationsResponseMeta
impl<'de> Deserialize<'de> for GetDetectedSecretsSecretIdLocationsResponseMeta
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 GetDetectedSecretsSecretIdLocationsResponseMeta
impl PartialEq for GetDetectedSecretsSecretIdLocationsResponseMeta
Source§fn eq(&self, other: &GetDetectedSecretsSecretIdLocationsResponseMeta) -> bool
fn eq(&self, other: &GetDetectedSecretsSecretIdLocationsResponseMeta) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetDetectedSecretsSecretIdLocationsResponseMeta
Auto Trait Implementations§
impl Freeze for GetDetectedSecretsSecretIdLocationsResponseMeta
impl RefUnwindSafe for GetDetectedSecretsSecretIdLocationsResponseMeta
impl Send for GetDetectedSecretsSecretIdLocationsResponseMeta
impl Sync for GetDetectedSecretsSecretIdLocationsResponseMeta
impl Unpin for GetDetectedSecretsSecretIdLocationsResponseMeta
impl UnwindSafe for GetDetectedSecretsSecretIdLocationsResponseMeta
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