pub struct EvidenceCount {
pub total: u32,
pub returned: u32,
}Expand description
Collected lower-bound total and the count returned on the current page.
Fields§
§total: u32Collected owners before pagination (not exhaustive recall).
returned: u32Owners included on the current page.
Trait Implementations§
Source§impl Clone for EvidenceCount
impl Clone for EvidenceCount
Source§fn clone(&self) -> EvidenceCount
fn clone(&self) -> EvidenceCount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EvidenceCount
Source§impl Debug for EvidenceCount
impl Debug for EvidenceCount
Source§impl Default for EvidenceCount
impl Default for EvidenceCount
Source§fn default() -> EvidenceCount
fn default() -> EvidenceCount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EvidenceCount
impl<'de> Deserialize<'de> for EvidenceCount
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
impl Eq for EvidenceCount
Source§impl JsonSchema for EvidenceCount
impl JsonSchema for EvidenceCount
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for EvidenceCount
impl PartialEq for EvidenceCount
Source§impl Serialize for EvidenceCount
impl Serialize for EvidenceCount
impl StructuralPartialEq for EvidenceCount
Auto Trait Implementations§
impl Freeze for EvidenceCount
impl RefUnwindSafe for EvidenceCount
impl Send for EvidenceCount
impl Sync for EvidenceCount
impl Unpin for EvidenceCount
impl UnsafeUnpin for EvidenceCount
impl UnwindSafe for EvidenceCount
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