pub struct PostDetectedSecretsQueriesResponseMeta {
pub limit: Option<f64>,
pub next_cursor: Option<String>,
pub total: Option<f64>,
}
Fields§
§limit: Option<f64>
The maximum number of records in the paginated response.
next_cursor: Option<String>
The Base64-encoded value that points to the next record in the results set.
total: Option<f64>
The number of records that match the defined criteria. This will only be present if the
include
query parameter is specified with the meta.total
value.
Trait Implementations§
Source§impl Clone for PostDetectedSecretsQueriesResponseMeta
impl Clone for PostDetectedSecretsQueriesResponseMeta
Source§fn clone(&self) -> PostDetectedSecretsQueriesResponseMeta
fn clone(&self) -> PostDetectedSecretsQueriesResponseMeta
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 PostDetectedSecretsQueriesResponseMeta
impl<'de> Deserialize<'de> for PostDetectedSecretsQueriesResponseMeta
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 PostDetectedSecretsQueriesResponseMeta
impl PartialEq for PostDetectedSecretsQueriesResponseMeta
Source§fn eq(&self, other: &PostDetectedSecretsQueriesResponseMeta) -> bool
fn eq(&self, other: &PostDetectedSecretsQueriesResponseMeta) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PostDetectedSecretsQueriesResponseMeta
Auto Trait Implementations§
impl Freeze for PostDetectedSecretsQueriesResponseMeta
impl RefUnwindSafe for PostDetectedSecretsQueriesResponseMeta
impl Send for PostDetectedSecretsQueriesResponseMeta
impl Sync for PostDetectedSecretsQueriesResponseMeta
impl Unpin for PostDetectedSecretsQueriesResponseMeta
impl UnwindSafe for PostDetectedSecretsQueriesResponseMeta
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